* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Top Query Bar */
.top-bar {
  background-color: #3f88c5;
  color: white;
  padding: 1% 5%; /* Use percentage for padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75em;
}

.top-bar i {
  margin-right: 5px;
}

/* Navigation Bar */
.navbar {
  background-color: white;
  color: black;
  padding: 1% 5%; /* Use percentage padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9em;
}

.logo {
  font-size: 1.8rem; /* Use rem for scalable font size */
  font-weight: bold;
  color: #3f88c5;
}

.logo span {
  color: red;
}

.nav-links a {
  text-decoration: none;
  color: black;
  margin-left: 3vw; /* Relative margin for spacing */
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #3f88c5;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh; /* Use viewport height */
  background: url("your-banner-image.png") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 6vw; /* Responsive font size based on viewport width */
  font-weight: bold;
  margin-bottom: 2%;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2vw; /* Responsive paragraph text */
  margin-bottom: 2%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Button */
.btn {
  display: inline-block;
  background-color: #3f88c5;
  color: white;
  padding: 0.5% 0.5%; /* Use percentages for padding */
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #2c6f9f;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .nav-links a {
    margin: 10px 0; /* Add space between links */
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 8vw; /* Adjust font size for smaller screens */
  }

  .hero p {
    font-size: 3vw;
  }

  .btn {
    font-size: 1rem;
    padding: 3% 8%;
  }
} /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Heading */
h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 2rem;
  color: #333;
}

.about-banner {
  background: url("../images/jobseekers.jpg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  height: 75vh; /* Ensures the banner covers the full viewport height */
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Match the height of the .about-banner */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-banner .content {
  position: relative;
  z-index: 2;
}

.about-banner h1 {
  padding-top: 3%;
  font-size: 25px;
  margin-bottom: 20px;
  line-height: 1.4;
  color: whitesmoke;
}

.about-banner .btn {
  display: inline-block;
  background-color: #3f88c5;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.about-banner .btn:hover {
  background-color: #2c6f9f;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }

  .navbar .logo {
    font-size: 20px;
  }

  .about-banner h1 {
    font-size: 24px;
  }

  .about-banner .btn {
    padding: 8px 16px;
  }
}

.about-section .text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-section-top .contact-button {
  display: inline-block;
  background-color: #3f88c5;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-section-top .contact-button:hover {
  background-color: #2c6f9f;
  transform: scale(1.05);
}

.about-section .contact-button2 {
  display: inline-block;
  background-color: #3f88c5;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-section .contact-button2:hover {
  background-color: #2c6f9f;
  transform: scale(1.05);
}

.about-section .about-one {
  margin-top: 70px;
}
/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #1e88e5;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.navbar .nav-links li a:hover {
  color: #1e88e5;
}

.about-section-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 100px;
  gap: 40px;
  background-color: #f4f8fc;
  flex-wrap: wrap;
  text-align: justify;
  padding: 80px;
  padding-top: 100px;
  padding-bottom: 80px;
}

.about-section-top .image {
  flex: 1 1 45%;
  height: 350px;
  background-image: url("../images/future.jpg"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.about-section-top .text {
  flex: 1 1 45%;
}

.about-section-top .text h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1e88e5;
  padding-left: 0px;
  margin-bottom: 20px;
}

.about-section-top .text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section-top {
    flex-direction: column;
  }

  .about-section-top .image {
    width: 100%;
    height: 250px;
  }

  .about-section-top .text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-section-top .text h2 {
    font-size: 24px;
  }

  .about-section-top .text p {
    font-size: 14px;
  }
}
/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 100px;
  gap: 40px;
  background-color: #f4f8fc;
  flex-wrap: wrap;
  text-align: justify;
  padding: 80px;
}

.about-section .image1 {
  flex: 1 1 45%;
  height: 350px;
  background-image: url("../images/more-oppurtunities.jpg"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.about-section .text {
  flex: 1 1 45%;
}

.about-section .text h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1e88e5;
  padding-left: 0px;
  margin-bottom: 20px;
}

.about-section .text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-section .image {
    width: 100%;
    height: 250px;
  }

  .about-section .text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-section .text h2 {
    font-size: 24px;
  }

  .about-section .text p {
    font-size: 14px;
  }
}

.staffing-services {
  text-align: center;
  padding: 100px 100px;
}
.staffing-services h1 {
  font-size: 36px;
  color: #000;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.blue-line {
  width: 5px;
  height: 40px;
  background-color: #007bff;
}

.services-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Responsive layout */
}
.overlay {
  padding-top: 40px;
  padding-bottom: 80px;
}
.container1 {
  text-align: center;
  z-index: 1;
  padding-left: 200px;
  max-width: 1000px;
}
.container1 p {
  font-size: 16px;
  color: #666;
  padding-top: 10px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1d4ed8;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0px 100px 0px 100px;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.icon {
  font-size: 32px;
  color: #1d4ed8;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .description {
    font-size: 14px;
  }

  .cards-container {
    padding: 0 10px;
  }
}
.carousel-container {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Carousel Group (for 3 slides in a row) */
.carousel-group {
  display: flex;
  min-width: 100%;
}

/* Individual Carousel Slide */
.carousel-slide {
  flex: 1;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px 10px;
}

.carousel-slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  margin-top: 15px;
}

.carousel-slide h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #333;
}

.carousel-slide p {
  font-size: 1rem;
  color: #555;
}

/* Navigation Dots */
.dots-container {
  text-align: center;
  margin-top: 4%;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

/* Responsive Design */

/* For Tablets */
@media screen and (max-width: 768px) {
  .carousel-slide {
    margin: 0 5px;
  }

  .carousel-container {
    width: 95%;
  }
}

/* For Mobile Devices */
@media screen and (max-width: 480px) {
  .carousel-group {
    flex-wrap: wrap; /* Stack slides on smaller devices */
  }

  .carousel-slide {
    width: 100%;
    margin-bottom: 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}
.carousel-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  padding: 20px;
  padding-top: 7.5%;
  padding-bottom: 5%;
}

/* Carousel Content */
.carousel-content {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Carousel Rows */
.carousel-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex: 0 0 100%;
}

/* Carousel Items */
.carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 18%;
}

.carousel-item img {
  width: 150px;
  height: auto;
}

/* Navigation Dots */
.navigation-dots {
  text-align: center;
  margin-top: 4%;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

/* Scroll-to-Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: left;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 calc(25% - 20px);
  margin: 10px;
}

.footer-column h4 {
  font-size: 18px;
  color: #000;
  margin-bottom: 15px;
}
.footer-column p,
.footer-column a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column p.special,
.footer-column p[special] {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 5px 0;
}
.footer-column span a.special {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column a.special:hover {
  color: #007bff; /* Change this to a desired hover color */
  text-decoration: underline;
}
.footer-column a:hover {
  color: #007bff;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: white;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 26px;
}

.footer-social-icons a {
  color: black;
}

.footer-bottom p {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
  color: #777;
}

.footer-column-address {
  font-size: 0px;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}
/* Responsive Footer */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}
