:root {
  --primary-color: #2f89b0;
  --primary-light-color: #135734;
  --secondary-color: #17977e;
  --secondary-light-color: #046955;
  --lime-color: #17977e1a;
  --text-primary-color: #8a8a8a;
  --text-secondary-color: #828282;
  --white-color: #ffffff;
}

.bg-custom-navbar {
  background-color: #edfaff;
  background-image: url("../img/hero-section-bg.svg");
  background-repeat: no-repeat;
  background-position: left top;
}

.hero-section {
  background-color: #edfaff;
  background-image: url("../img/hero-section-bg.svg");
  background-repeat: no-repeat;
  background-position: left top;
  min-height: 655px;
  overflow-y: auto;
}

.banner-image {
  margin-top: 33px;
}

.hero-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 57px;
  color: #4e4e4e;
}

.text-nursing-job {
  color: #2f89b0;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #4e4e4e;
}

.popular-searches-text {
  color: #4e4e4e;
}

.ten-k-text {
  color: #17977e;
}

.text-live-jobs {
  color: #4e4e4e;
}

.navbar-nav .nav-link.btn-primary {
  background-color: #2f89b0 !important;
  border-radius: 10px !important;
}

.search-box {
  background: var(--white-color);
  border-radius: 8px;
  padding: 15px;
}

.search-box .form-control {
  border: 1px solid var(--text-primary-color);
  border-radius: 4px;
  padding: 10px;
}

.search-box .btn {
  background-color: var(--primary-color);
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  color: var(--white-color);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.search-box .btn:hover {
  background-color: var(--primary-light-color);
  color: var(--white-color);
}

.dropdown-btn {
  background-color: var(--white-color) !important;
}

.custom-dropdown-menu {
  background-color: var(--primary-light-color);
  color: var(--white-color);
  border-radius: 10px;
  padding-top: 0 !important;
}

.dropdown-menu-bg {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

.custom-dropdown-item:hover {
  background-color: var(--primary-color);
}

.custom-form-check-label {
  color: var(--white-color) !important;
}

.candidate-container {
  gap: 0; /* Ensure there is no gap between candidate images */
}

footer {
  margin-top: 30px;
}

.hero-img {
  width: 100%;
  max-width: 100%;
}

.btn-custom {
  width: 270px;
  border: 1px solid #4e4e4e;
  border-radius: 30px;
  color: #4e4e4e;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px;
  cursor: pointer;
}

.btn-custom:hover {
  border: 1px solid var(--primary-light-color);
  background-color: var(--primary-light-color);
  color: var(--white-color);
  cursor: pointer;
}

.custom-file-input {
  position: absolute;
  width: 270px;
  opacity: 0;
  cursor: pointer;
}

.file-button-wrapper {
  position: relative;
  display: inline-block;
}

.full-width-image-section {
  width: 100%; /* Full width of the viewport */
  overflow: hidden; /* Hide any overflowed parts */
}

.full-width-image {
  width: 100%; /* Make the image span the full width */
  height: auto; /* Maintain the aspect ratio of the image */
  display: block; /* Remove any extra space below the image */
}

.process-step-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}

/* Layout for medium screens (768px to 1199px) */
@media (max-width: 1199px) {
  .process-step-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Layout for small screens (576px to 767px) */
@media (max-width: 767px) {
  .process-step-container {
    grid-template-columns: 1fr; /* 1 column */
  }
}

/* Layout for extra small screens (up to 575px) */
@media (max-width: 575px) {
  .process-step-container {
    grid-template-columns: 1fr; /* 1 column */
  }
}

.process-step {
  border: 1px solid var(--secondary-color);
}

.featured-job-area {
  padding: 50px 0;
}

.section-tittle {
  margin-bottom: 40px;
}

.section-tittle h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  color: var(--secondary-light-color);
}

.single-job-items {
  display: flex;
  align-items: center;
  border: 1px solid var(--text-primary-color);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.job-items {
  display: flex;
  align-items: center;
}

.company-img {
  margin-right: 15px;
}

.circle-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 24px;
}

.job-tittle {
  flex: 1;
}

.job-title {
  font-size: 24px;
}

.job-details {
  margin-top: 10px;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.details-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-primary-color);
}

.items-link {
  display: flex;
  gap: 10px;
}

/* Align buttons to the right and ensure no excess margin */
.items-link {
  display: flex;
  gap: 10px;
  margin-left: auto; /* Push buttons to the right side */
}

.btn-featured,
.btn-full-time {
  background-color: var(--lime-color); /* Background color with opacity */
  color: var(--white-color); /* Text color */
  border: 1px solid var(--secondary-light-color); /* Border color */
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  width: 132px;
  height: 41px;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Ensure text color remains white on hover */
}

.btn-featured:hover,
.btn-full-time:hover {
  color: var(--white-color); /* Text color on hover */
  background-color: var(--lime-color); /* Background color on hover */
  border-color: var(--secondary-light-color); /* Border color on hover */
}

.btn-full-time {
  background-color: var(--primary-light-color); /* Different background color */
  border-color: var(--primary-light-color); /* Border color */
}

.btn-full-time:hover {
  background-color: var(--primary-light-color); /* Background color on hover */
  border-color: var(--primary-light-color); /* Border color */
}

/* Increase container width */
.container {
  max-width: 1528px;
  margin: 0 auto; /* Center the container */
}

.center-button-section {
  padding: 10px 0; /* Adjust padding as needed */
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px; /* Adjust the height if needed */
}

.btn-center {
  width: 400px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 18px;
}

/* Ensure no hover effects change the text color */
.btn-center:hover,
.btn-center:focus,
.btn-center:active {
  color: var(
    --white-color
  ); /* Keep text color white on hover, focus, and active states */
  background-color: var(--secondary-color); /* Keep background color same */
  border: none; /* Remove border if any */
  text-decoration: none; /* Remove underline if any */
}

.featured-provinces-title-container {
  padding: 20px 0; /* Increased padding around the section */
  text-align: center; /* Center the text horizontally */
  margin-top: 50px; /* Add top margin above the section */
}

.featured-provinces-title {
  color: #046955;
  font-size: 40px; /* Font size */
  font-weight: 500; /* Font weight */
}

.dream-job-section {
  background-color: #2f89b0; /* Background color */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px; /* Adjusted height to ensure image covers full height */
  position: relative; /* Allow positioning of child elements */
  flex-direction: column; /* Stack items vertically */
  padding: 20px; /* Optional padding to ensure button doesn't touch edges */
}

.dream-job-img {
  position: absolute; /* Position image absolutely within the section */
  top: 0;
  left: 0;
  height: 100%; /* Make sure the image covers the full height */
  object-fit: contain; /* Ensure image covers the area without distortion */
  transform: scaleX(-1); /* Mirror the image horizontally */
  z-index: 0; /* Place image behind the text */
}

.nurse-bg {
  position: absolute; /* Position image absolutely within the section */
  top: -80px;
  right: 0;
  height: 100%; /* Make sure the image covers the full height */
  object-fit: contain; /* Ensure image covers the area without distortion */
  z-index: 0; /* Place image behind the text */
}

.dream-job-title {
  z-index: 1; /* Ensure text is above the image */
  /* Font family */
  font-size: clamp(40px, 5vw, 65px); /* Responsive font size */
  font-weight: 700; /* Font weight */
  line-height: 1.2; /* Proportional line height */
  color: var(--white-color); /* Text color */
  text-align: left; /* Align text to the left */
  margin: 0; /* Remove default margins */
  position: relative; /* Ensure text is positioned correctly */
}

.dream-job-button {
  width: 350px;
  background-color: var(--white-color);
  color: var(--black-color);
  border-radius: 100px;
  border: 2px solid var(--primary-light-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.dream-job-button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(4, 105, 85, 0.3);
}

.dream-job-button:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(4, 105, 85, 0.2);
}

.call-section {
  background-color: var(--primary-light-color); /* Background color */
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space between text and image */
  padding: 0; /* Remove padding */
  height: 350px; /* Fixed height for the section */
  position: relative; /* Position relative for image positioning */
  overflow: hidden; /* Hide overflow to ensure image does not extend below */
  margin-top: 150px; /* Adjust top margin if needed */
}

.call-text {
  color: var(--white-color); /* Text color */
  /* Font family */
  font-size: 40px; /* Font size */
  font-weight: 500; /* Font weight */
  line-height: 50px; /* Line height */
  text-align: left; /* Align text to the left */
  max-width: 50%; /* Ensure text does not exceed half the width */
  position: relative; /* Ensure text stays in place within the section */
  z-index: 1; /* Ensure text appears above the image */
}

.call-image {
  width: 50%; /* Ensure image container takes up half the width */
  height: 100%; /* Ensure image container covers full section height */
  display: flex; /* Use flexbox to align content */
  justify-content: flex-end; /* Align content to the right */
  position: relative; /* Ensure positioning within the container */
  overflow: hidden; /* Hide overflow of the image */
}

.call-image img {
  width: auto; /* Maintain aspect ratio */
  height: 100%; /* Ensure the image covers the full height of the section */
  object-fit: cover; /* Ensure the image covers the area without distortion */
  position: absolute; /* Position image absolutely within the container */
  top: -100px; /* Move the image outside the section at the top */
  right: 0; /* Align the image to the right side */
  z-index: 0; /* Ensure image stays behind the text */
}

.full-width-image-section {
  width: 100%;
  margin-bottom: 30px;
}

.full-width-image {
  width: 100%;
  height: auto;
}

.province-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.province-card:hover {
  transform: scale(1.01);
  border-radius: 30px;
  cursor: pointer;
}

.card-img {
  border-radius: 30px;
  object-fit: cover;
  height: 100%;
}

.large-card {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.card-img-overlay {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.card-img-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

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

.card-text {
  font-size: 1rem;
}

.filter-section {
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-listing {
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-item h5 {
  margin: 0;
}

.job-item p {
  margin: 0;
}

.pagination .page-item .page-link {
  color: #007bff;
}

.pagination .page-item.active .page-link {
  background-color: #007bff;
  border-color: #007bff;
  color: var(--white-color);
}

/* Full-Width Image Section Styles */
.full-width-image-section {
  width: 100%;
  overflow: hidden;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures the image covers the container without distortion */
}

/* Full-Width Background Image Section Styles */
.full-width-background-section {
  width: 100%;
  height: 500px; /* Adjust height as needed */
  background-image: url("/img/cai.png");
  background-size: cover; /* Ensure the image covers the entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
  position: relative; /* Allows absolute positioning of content if needed */
}

.full-width-background-section .content {
  position: absolute; /* Allows content to be positioned on top of the background */
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); /* Center content vertically and horizontally */
  color: var(--white-color); /* Text color for visibility */
  text-align: center;
  width: 80%; /* Adjust width if needed */
  padding: 20px; /* Add padding if needed */
}

/* Contact Section Styles */
.contact-section {
  background-color: rgba(23, 151, 126, 0.05);
  background-image: url("../img/doctor-with-bg.svg");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3%;
}

/* Add media query for smaller devices */
@media (max-width: 1024px) {
  .contact-section {
    background-image: none;
    padding: 2rem 3%;
    padding-bottom: 0;
  }

  .contact-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-mobile-image {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 0;
  }
}

@media (min-width: 1025px) {
  .contact-mobile-image {
    display: none;
  }
}

/* Content within the section */
.contact-content {
  position: relative; /* Position relative for padding adjustment */
  text-align: left; /* Align text to the left */
}

.contact-heading {
  font-size: 60px; /* Adjust size as needed */
  font-weight: 500;
  line-height: 1.2;
  color: #17977e; /* Heading color */
  margin-bottom: 20px; /* Space below the heading */
}

.contact-paragraph {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #2f89b0; /* Paragraph color */
}

.contact-link {
  color: var(--secondary-color); /* Link color */
  text-decoration: underline; /* Underline links */
}

.contact-link:hover {
  color: #dcdcdc; /* Change link color on hover for better visibility */
}

.testimonial-section {
  position: relative;
  margin: 100px 0;
}

.testimonial-background {
  background-image: url("/img/test.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 70px 0px;
  color: var(--white-color);
  position: relative; /* To position pagination correctly */
}

.testimonial-background h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
}

.testimonial-box {
  background: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  height: 100%; /* Ensure consistent height */
  box-sizing: border-box;
}

.testimonial-box h3 {
  font-size: 1.5em;
}

.testimonial-box p {
  font-size: 1em;
  color: var(--text-primary-color);
  margin: 20px 0;
  flex-grow: 1; /* Ensure content fills available space */
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-author h4 {
  font-size: 1.2em;
  margin: 0;
}

.testimonial-author p {
  margin: 0;
  color: #999;
}

.feature-job-section {
  background-color: var(--lime-color);
  height: 350px;
}

.stethoscope-area {
  top: -885px;
  right: 0;
}

/* Banner Styling */
.banner {
  background-color: var(--lime-color);
  color: #ffffff;
  height: 250px;
}

.job-description {
  border: 1px solid #d9d9d9;
}

.job-overview-card {
  background-color: #f1f1f1;
}

.custom-col-md-7 {
  width: 65%;
}

.title-text {
  font-size: 20px;
}

.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* responsive css */
/* Layout for medium screens (768px to 1199px) */
@media (max-width: 1199px) {
  .banner {
    height: inherit !important;
  }
}

@media (max-width: 992px) {
  .custom-col-md-7 {
    width: 100% !important;
  }
}

/* Layout for small screens (576px to 767px) */
@media (max-width: 767px) {
  .feature-job-heading {
    background-color: var(--white-color) !important;
  }

  .contact-content-image-area {
    position: relative !important;
    top: inherit !important;
    right: inherit !important;
  }
}

/* Layout for extra small screens (up to 575px) */
@media (max-width: 575px) {
  .testimonial-background {
    padding: 70px 20px;
  }
}

@media (max-width: 1000px) {
  .hero-section {
    height: inherit !important;
  }

  .hero-title {
    font-size: 8vw;
    text-align: center;
  }
}

@media (max-width: 1390px) {
  .large-card {
    width: 100%;
    max-width: 450px;
    height: auto;
  }
}
/* responsive css */

.stats-section {
  background: white;
  padding: 5rem 0;
  color: #333;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 200px;
}

.stat-icon {
  color: #17977e;
  margin-bottom: 1.5rem;
  height: 48px;
  width: 48px;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #333;
}

.stat-text {
  font-size: 1rem;
  color: #708090;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1rem;
    min-height: 180px;
  }
}

.recruitment-section {
  background: white;
  padding: 1rem 0 4rem 0;
}

.recruitment-title {
  color: #17977e;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.recruitment-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recruitment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
}

.recruitment-header.sourcing {
  background: #2f89b0;
}

.recruitment-header.screening {
  background: #17977e;
}

.recruitment-header.verification {
  background: #4e4e4e;
}

.recruitment-header.onboarding {
  background: #2f89b0;
}

.recruitment-icon {
  width: 24px;
  height: 24px;
}

.recruitment-title-text {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

.recruitment-description {
  color: #708090;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .recruitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .recruitment-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* Previous styles remain same until job-actions */
.featured-section {
  background: #f5fffe url("../img/featured-job-bg.svg") no-repeat right top;
  padding: 4rem 0;
}

.featured-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.featured-title {
  color: #135776;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.featured-subtitle {
  color: #708090;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.navigation-buttons {
  display: flex;
  gap: 2rem;
}

.nav-button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: #17977e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.job-card {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  border: 1px solid #17977e;
  box-shadow: 0 0 10px rgba(0.3, 0.3, 0.3, 0.3);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.job-time {
  color: #708090;
  font-size: 0.875rem;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: #708090;
  font-size: 0.875rem;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: fit-content;
}

.job-detail svg {
  width: 16px;
  height: 16px;
  color: #708090;
  flex-shrink: 0;
}

.job-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
}

.job-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f4f4f4;
  border-radius: 100px;
  font-size: 0.875rem;
  color: #708090;
  margin: 0;
}

.job-actions {
  display: flex;
  gap: 2rem;
}

.btn-apply {
  color: #17977e;
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

.btn-save {
  color: #708090;
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

@media (max-width: 768px) {
  .featured-container {
    padding: 0 1rem;
  }

  .featured-title {
    font-size: 2rem;
  }

  .featured-subtitle {
    font-size: 1rem;
  }

  .navigation-buttons {
    right: 1rem;
  }

  .job-details {
    gap: 1rem;
  }

  .job-detail {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .job-details {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Featured Provinces Section */
.custom-swiper {
  width: 100%;
  height: 400px;
}

@media (max-width: 768px) {
  .custom-swiper {
    height: 300px;
  }
}

.custom-swiper-slide {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-slide-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .custom-slide-content {
    width: 60%;
  }
}

.custom-slide-title {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-slide-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}

.custom-slide-button {
  font-size: 14px;
  background-color: var(--white-color);
  padding: 8px 25px;
}

.new-tab-link-btn {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Add these custom swiper button styles */
.swiper-button-container {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.custom-swiper-button-next,
.custom-swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #17977e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-swiper-button-next:hover,
.custom-swiper-button-prev:hover {
  background-color: #135734;
  transform: scale(1.05);
}

.custom-swiper-button-next::after,
.custom-swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .swiper-button-container {
    top: 10px;
    right: 10px;
  }

  .custom-swiper-button-next,
  .custom-swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .custom-swiper-button-next::after,
  .custom-swiper-button-prev::after {
    font-size: 16px;
  }
}

.search-button {
  display: inline-flex;
  align-items: center;
  padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 24px);
  background: white;
  border: none;
  border-radius: 100px;
  gap: clamp(8px, 2vw, 16px);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: clamp(200px, 80vw, 400px);
  max-width: 100%;
}

.search-button:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.search-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(23, 151, 126, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.search-button:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .search-button {
    padding: 8px 16px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .search-button {
    padding: 6px 12px;
    gap: 6px;
  }
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: #17977e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.search-button:hover .icon-circle {
  transform: rotate(360deg);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.button-text {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-right: 8px;
  position: relative;
  z-index: 1;
}

.chevrons {
  display: flex;
  gap: 4px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.chevron {
  width: 20px;
  height: 20px;
  color: #708090;
  opacity: 0.5;
  transition: all 0.3s ease;
  transform: translateX(0);
}

.search-button:hover .chevron {
  opacity: 1;
  animation: slideChevron 1.5s ease-in-out infinite;
}

.search-button:hover .chevron:nth-child(2) {
  animation-delay: 0.1s;
}

.search-button:hover .chevron:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes slideChevron {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Add focus styles for accessibility */
.search-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 151, 126, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Add touch device hover alternative */
@media (hover: none) {
  .search-button:active::after {
    width: 300px;
    height: 300px;
  }

  .search-button:active .chevron {
    opacity: 1;
    transform: translateX(5px);
  }
}

.consultation-section {
  background: white;
  padding: 48px 0;
}

.consultation-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultation-title {
  color: #17977e;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
}

.consultation-subtitle {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.consultation-text {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.book-now-btn {
  width: 100%;
  padding: 12px;
  background: #e5f5f2;
  color: #17977e;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-now-btn:hover {
  background: #d0ebe7;
}

.macbook-frame {
  max-width: 600px;
  margin: 0 auto;
}

.macbook-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .consultation-section {
    padding: 32px 0;
  }

  .consultation-content {
    margin-top: 24px;
    text-align: center;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icon {
  margin: 20px 10px 5px 0 !important;
  text-decoration: none;
}

.client-testimonial-section {
  margin-top: 5rem;
  background: #edfaff;
  padding: 3rem 0;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-testimonial-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

@media (max-width: 1200px) {
  .client-testimonial-container {
    gap: 5rem;
  }
}

@media (max-width: 992px) {
  .client-testimonial-container {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .client-testimonial-container {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .client-testimonial-container {
    gap: 1rem;
  }
}

.client-testimonial-left-column {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.client-testimonial-title {
  color: #17977e;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.client-testimonial-nav-buttons {
  display: flex;
  gap: 3rem;
}

.client-testimonial-nav-button {
  width: 40px;
  height: 40px;
  border: 1.5px solid #000000;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5rem;
}

.client-testimonial-nav-button:hover {
  background: #17977e;
  border-color: #17977e;
}

.client-testimonial-nav-button:hover svg {
  stroke: #ffffff;
}

.client-testimonial-slides {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.client-testimonial-slide {
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease;
  width: 100%;
  visibility: hidden;
}

.client-testimonial-slide.client-testimonial-active {
  opacity: 1;
  position: relative;
  visibility: visible;
}

.client-testimonial-quote-section {
  position: relative;
}

.client-testimonial-quote-marks {
  color: #17977e;
  font-family: serif;
  line-height: 1;
  padding-bottom: 2rem;
}

.client-testimonial-quote-text {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 2rem;
}

.client-testimonial-author {
  text-align: center;
  width: 120px;
}

.client-testimonial-author-avatar {
  width: 80px;
  height: 80px;
  background: #f4ce9b;
  border-radius: 16px;
  margin: 0 auto 0.75rem;
  overflow: hidden;
}

.client-testimonial-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.client-testimonial-author-title {
  color: #8a8a8a;
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 768px) {
  .client-testimonial-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .client-testimonial-left-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .client-testimonial-nav-buttons {
    order: 3;
    margin-top: -5rem;
    justify-content: center;
  }

  .client-testimonial-title {
    order: 1;
  }

  .client-testimonial-slides {
    order: 2;
    margin: 0 auto;
  }

  .client-testimonial-quote-marks {
    left: 50%;
  }

  .client-testimonial-author {
    margin: 2rem auto 0;
  }
}

/* Add these new animation classes */
.animate-scale {
  transition: transform 0.3s ease;
}

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

/* Add hover animation for job cards */
.job-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Add smooth transition for consultation section */
.consultation-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.consultation-section:hover .consultation-content {
  transform: translateY(-5px);
}

/* Add animation for the book now button */
.book-now-btn {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  background-color: #d0ebe7;
}

/* Add animation for testimonial navigation buttons */
.client-testimonial-nav-button {
  transition: all 0.3s ease;
}

.client-testimonial-nav-button:hover {
  transform: scale(1.1);
}

/* Add animation for social icons */
.social-icon {
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}
