*{
    margin: 0;
    padding: 0;
}

/* indexpage */

/* Home page */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.search-box {
 
    flex-wrap: wrap;
    
    border: 2px solid #1e50ff;
    border-radius: 6px;
    padding: 10px;
    max-width: 629px;
    background-color: #fff;
}

.search-box input,
.search-box select {
  flex: 1;
  border: none;
  /* padding: 10px; */
  font-size: 1rem;
  outline: none;
}

.search-btn {
  background-color: #1e50ff;
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 4px;
}

.hero-image img {
  max-width: 520px;
  width: 100%;
}

/* Job Action Cards Section */
.job-action-section {
  margin: 40px 0;
}

.job-action-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.job-card {
  flex: 1 1 48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f6f6;
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #e0e0e0;
  transition: box-shadow 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-card-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #000;
}

.job-card-text p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

.job-card-icon img {
  width: 48px;
  height: 48px;
}


/* Top Companies Section */
.top-companies-section {
  padding: 50px 0px;
  text-align: center;
}

.top-companies-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.companies-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.company-card {
  background-color: #fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 20px 16px;
  width: 180px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.company-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.company-card .company-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.company-card h4 {
  font-size: 1rem;
  margin: 6px 0;
  font-weight: 600;
  color: #000;
}

.company-card p {
  font-size: 0.85rem;
  color: #555;
  margin: 4px 0;
}

.company-card i {
  margin-right: 6px;
  color: #007bff;
  font-size: 0.9rem;
}

.view-all-btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  background-color: #0056f5;
  color: #fff;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #0043c7;
}

/* popular-industries */
.popular-industries {
  background-color: #f3f6fc;
  padding: 40px 20px;
  width: 95%;
  margin-left: 40px;
  text-align: center;
}

.popular-industries h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #111;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.industry-tag {
  background-color: #fff;
  border: 1px solid #e1e5f2;
  border-left: 3px solid #0056f5;
  color: #111;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.industry-tag:hover {
  background-color: #0056f5;
  color: #fff;
}



.featured-jobs {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.featured-jobs h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.job-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.job-card {
  width: 260px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  border: 1px solid #eee;
}

.job-top {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.job-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}

.location {
  font-size: 14px;
  color: #007bff;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.job-footer {
  background: #f2f7fd;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-meta .date {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.job-meta .company {
  font-size: 14px;
  font-weight: 600;
  margin: 2px 0 0;
}

.job-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}


/* Featured Jobs */
.jobs-featured {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.jobs-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
}

.jobs-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}


.job-item {
  width: 260px;
  border-radius: 14px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Hover Animation */
.job-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Optional: Scale the company logo slightly on hover */
.job-item:hover .job-bottom img {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

.job-head {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555;
  margin-bottom: 10px;
}

.job-position {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
}

.job-location {
  font-size: 14px;
  color: #0d6efd;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.job-bottom {
  background-color: #f1f7fd;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-date {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}

.job-company {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.job-bottom img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

<!-- /* slider section */ -->
.job-categories-slider {
  padding: 50px 20px;
  background-color: #f2f6fc;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.category-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}

.category-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.category-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.category-card {
  flex: 0 0 auto;
  width: 160px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.category-card:hover{
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.category-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.category-card p {
  margin: 0 0 10px;
  font-weight: 500;
}

.category-card a {
  font-size: 13px;
  background-color: #f1f7fd;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  color: #0d6efd;
  text-decoration: none;
}

.category-card i {
  margin-right: 5px;
}

.category-nav {
  background: #fff;
  border: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.category-nav.prev {
  left: 10px;
}

.category-nav.next {
  right: 10px;
}

/* <!-- Latest Jobs section --> */

.latest-jobs {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.job-card {
  background: white;
  display: flex;
  align-items: center;
  height: 80%;
  width: 95%;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.job-card img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
}

.job-info h3 {
  font-size: 16px;
 
}

.job-info p {
  font-size: 14px;
  color: #555;
 
}

#make{
  margin-right: 70px;
}
#makes{
  margin-right: 50px;
}
#makess{
  margin-right: 40px;
}

.company {
  color: #2a63e3;
  cursor: pointer;
  text-decoration: underline;
}

.tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 12px;
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
}

.tag.permanent {
  background: #999;
}

.tag.contract {
  background: #a100f2;
}

.tag.freelance {
  background: #26c281;
}

.button-container {
  text-align: center;
  margin-top: 40px;
}

.view-button {
  background-color: #0056ff;
  color: white;
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.view-button:hover {
  background-color: #0044cc;
}

/* === Jobs by Cities Section === */
.jobs-by-cities {
  padding: 60px 20px;
  background-color: #f1f7fd;
  text-align: center;
}

.jobs-by-cities .section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.city-card {
  position: relative;
  width: 250px;
  margin-bottom: 30px;
  height: 300px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.city-name {
  position: absolute;
  top: 45%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Hover Animation */
.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.city-card:hover img {
  transform: scale(1.05);
}

/* featured-candidates */
.featured-candidates {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.candidates-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.candidates-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.candidate-card {
  min-width: 260px;
  max-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  transition: transform 0.3s ease;
}

.candidate-card:hover {
  transform: translateY(-5px);
}

.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0d6efd;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.candidate-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px auto;
  object-fit: cover;
}

.candidate-name {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px;
}

.candidate-role {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.candidate-detail,
.candidate-location {
  font-size: 13px;
  color: #444;
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.view-profile {
  margin-top: 12px;
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.view-profile:hover {
  background-color: #004bbd;
}

.view-all-btn {
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 8px;
  background: #0d6efd;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background: #004bbd;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-btn.left {
  left: -10px;
}

.slider-btn.right {
  right: -10px;
}

.icon-left,
.icon-right {
  font-size: 18px;
}


.icon-briefcase::before {
  content: '📁';
}

.icon-map-marker::before {
  content: '⛳';
}

/* How It Works */
.how-it-works {
  background-color: #f3f6fc;
  padding: 60px 20px;
  width: 95%;
  margin-left: 35px;
  font-family: 'Segoe UI', sans-serif;
}

.how-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

.how-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9  0px;
  text-align: center;
}

.how-step {
  width: 380px;
  padding: 10px;
}

.how-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.how-icon-box img {
  width: 30px;
  height: 30px;
}

.how-step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.how-step-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  text-align: center;
}

.subheading {
  color: #f9b800;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: -15px;
}

.mainheading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.testimonials-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 340px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-name {
  font-weight: 700;
  font-size: 17px;
  margin: 0;
}

.author-title {
  color: #0d6efd;
  font-size: 14px;
  text-decoration: none;
}

/* Country Jobs Section */
.country-jobs-section {
  background-color: #f3f6fc;
  padding: 60px 20px;
  width: 95%;
  margin-left: 40px;
  text-align: center;
}

.country-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.country-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.country-box strong {
  display: block;
  font-size: 15px;
  color: #000;
  margin-bottom: 5px;
}

.country-box p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* Blog Section Styles */
.blog-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.container {
    padding-top: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.blog-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-card {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-info {
  padding: 15px;
}

.blog-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.blog-date i::before {
  content: "📅";
  margin-right: 5px;
}

.blog-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background-color: #0056b3;
}

/* Footer Styles */
.footer {
  background-color: #ecf4ff;
  padding: 50px 20px;
  width: 95%;
  margin-left: 40px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column.contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.footer-column.contact i::before {
  margin-right: 6px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 20px;
  text-decoration: none;
}

/* Icons - Placeholder styles */
.icon-location::before { content: "📍"; }
.icon-mail::before { content: "✉️"; }
.icon-facebook::before { content: "🌐"; } /* Use actual icons like Font Awesome in production */
.icon-twitter-x::before { content: "❌"; }
.icon-instagram::before { content: "📸"; }
.icon-linkedin::before { content: "💼"; }
.icon-youtube::before { content: "▶️"; }



/* Responsive Adjustments */
@media (max-width: 1024px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }


.hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .search-box {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .job-action-cards {
    flex-direction: column;
  }

  .job-card {
    flex: 1 1 100%;
  }

  .companies-grid {
    gap: 30px;
  }

  .industry-tags {
    gap: 10px;
  }
  .jobs-wrapper {
    gap: 30px;
  }

  .job-item {
    width: 45%;
  }

  .category-carousel {
    gap: 16px;
  }

  .category-card {
    width: 140px;
    padding: 16px 8px;
  }
  .job-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .city-card {
    width: 260px;
    height: 360px;
  }

  .candidate-card {
    min-width: 220px;
    max-width: 220px;
  }

  .candidate-name {
    font-size: 16px;
  }

  .candidate-role {
    font-size: 13px;
  }

  .candidate-detail,
  .candidate-location {
    font-size: 12px;
  }

  .how-step {
    width: 300px;
  }

  .testimonial-card {
    max-width: 300px;
    padding: 25px 18px;
  }

  .country-box {
    min-width: 240px;
    padding: 18px 24px;
  }

  .mainheading,
  .how-title {
    font-size: 24px;
  }

  .section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.blog-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-card {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-info {
  padding: 15px;
}

.blog-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.blog-date i::before {
  content: "📅";
  margin-right: 5px;
}

.blog-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background-color: #0056b3;
}

/* Footer Styles */
.footer {
  background-color: #ecf4ff;
  padding: 50px 20px;
  width: 95%;
  margin-left: 40px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column.contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.footer-column.contact i::before {
  margin-right: 6px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 20px;
  text-decoration: none;
}

/* Icons - Placeholder styles */
.icon-location::before { content: "📍"; }
.icon-mail::before { content: "✉️"; }
.icon-facebook::before { content: "🌐"; } 
.icon-twitter-x::before { content: "❌"; }
.icon-instagram::before { content: "📸"; }
.icon-linkedin::before { content: "💼"; }
.icon-youtube::before { content: "▶️"; }

}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .btn-register {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .lang-icon {
    width: 26px;
    height: 26px;
  }

  .hero-section {
    padding: 30px 0;
  }
.hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .search-box input,
  .search-box select {
    font-size: 0.95rem;
  }

  .search-btn {
    font-size: 1rem;
  }

  .company-card {
    width: 140px;
    padding: 16px 12px;
  }

  .company-card h4 {
    font-size: 0.9rem;
  }

  .company-card p {
    font-size: 0.8rem;
  }

  .popular-industries {
    margin-left: 0;
    padding: 30px 10px;
    width: 100%;
  }

  .industry-tag {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .job-cards {
    flex-direction: column;
    align-items: center;
  }

  .job-card {
    width: 90%;
  }

  .jobs-title,
  .category-title {
    font-size: 22px;
  }

  .jobs-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .job-item {
    width: 90%;
  }

  .category-card {
    width: 120px;
    padding: 14px 6px;
  }

  .category-card img {
    width: 50px;
    height: 50px;
  }

  .category-card p {
    font-size: 14px;
  }

  .category-card a {
    font-size: 12px;
    padding: 5px 8px;
  }

  .category-nav {
    width: 28px;
    height: 28px;
  }
   .title,
  .jobs-by-cities .section-title,
  .candidates-title {
    font-size: 22px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .job-card img {
    width: 50px;
    height: 50px;
  }

  .job-info h3 {
    font-size: 15px;
  }

  .job-info p {
    font-size: 13px;
  }

  .cities-grid {
    gap: 20px;
  }

  .city-card {
    width: 90%;
    height: 320px;
  }

  .city-name {
    font-size: 18px;
  }

  .candidate-card {
    min-width: 200px;
    max-width: 200px;
    padding: 16px;
  }

  .candidate-img {
    width: 70px;
    height: 70px;
  }

  .view-all-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
  }

  .how-it-works,
  .country-jobs-section {
    margin-left: 0;
    width: 100%;
    padding: 50px 16px;
  }

  .how-step {
    width: 100%;
    max-width: 320px;
  }

  .testimonials-wrapper {
    gap: 20px;
  }

  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }

  .country-boxes {
    gap: 16px;
  }

  .country-box {
    width: 100%;
    max-width: 320px;
  }

  .mainheading,
  .how-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .subheading {
    font-size: 15px;
  }

  .blog-section {
    padding: 40px 16px;
  }

  .container {
    padding: 0 12px;
  }
  .section-title {
    font-size: 24px;
  }

  .blog-cards {
    flex-direction: column;
    gap: 20px;
  }

  .blog-card {
    flex: 1 1 100%;
  }

  .blog-card img {
    height: 200px;
  }

  .blog-title {
    font-size: 16px;
  }

  .view-all-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer {
    padding: 35px 15px;
  }

  .footer-column {
    flex: 1 1 100%;
  }
}


@media (max-width: 480px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    display: none;
  }

  .btn-register {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .container {
    padding: 0 10px;
  }

  .hero-content {
    gap: 20px;
  }
   .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .search-box {
    padding: 10px;
    display: flex;
    gap: 10px;
  }

  .search-box input,
  .search-box select {
    font-size: 0.9rem;
  }

  .search-btn {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .job-card {
    padding: 16px;
  }

  .job-card h3 {
    font-size: 15px;
  }

  .job-card-icon img {
    width: 40px;
    height: 40px;
  }

  .company-card {
    width: 100%;
  }

  .featured-jobs h2,
  .popular-industries h2 {
    font-size: 1.25rem;
  }

  .view-all-btn {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .jobs-title,
  .category-title {
    font-size: 20px;
  }

  .job-item {
    width: 100%;
    padding: 16px;
  }

  .job-position {
    font-size: 15px;
  }

  .job-location,
  .job-head {
    font-size: 13px;
  }

  .job-date,
  .job-company {
    font-size: 12px;
  }

  .category-card {
    width: 100px;
    padding: 10px 6px;
  }

  .category-card img {
    width: 44px;
    height: 44px;
  }

  .category-card p {
    font-size: 13px;
  }

  .category-card a {
    font-size: 11px;
    padding: 4px 6px;
  }

  .category-nav {
    width: 24px;
    height: 24px;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    padding: 12px;
  }

  .job-info h3 {
    font-size: 14px;
  }

  .job-info p {
    font-size: 12px;
  }

  .tag {
    font-size: 11px;
    padding: 2px 6px;
  }

  #make,
  #makes,
  #makess {
    margin-right: 20px;
  }

  .cities-grid {
    flex-direction: column;
    align-items: center;
  }

  .city-card {
    width: 100%;
    height: 280px;
  }

  .city-name {
    font-size: 16px;
  }

  .candidates-slider {
    gap: 14px;
  }

  .candidate-card {
    min-width: 180px;
    max-width: 180px;
    padding: 14px;
  }

  .candidate-name {
    font-size: 15px;
  }

  .view-profile {
    font-size: 13px;
    padding: 8px 16px;
  }

  .slider-btn {
    width: 26px;
    height: 26px;
  }

  .how-step {
    width: 100%;
    padding: 10px 5px;
  }

  .how-icon-box {
    width: 50px;
    height: 50px;
  }

  .how-icon-box img {
    width: 24px;
    height: 24px;
  }

  .how-step-title {
    font-size: 16px;
  }

  .how-step-text {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .author-name {
    font-size: 15px;
  }

  .author-title {
    font-size: 13px;
  }

  .country-box strong {
    font-size: 14px;
  }

  .country-box p {
    font-size: 12px;
  }

  .blog-section {
    padding: 30px 12px;
  }

  .mainheading,
  .how-title {
    font-size: 20px;
  }

  .subheading {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }
  .section-title {
    font-size: 22px;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-info {
    padding: 12px;
  }

  .blog-date,
  .blog-title {
    font-size: 14px;
  }

  .view-all-btn {
    font-size: 13px;
    padding: 9px 18px;
  }
}

/* End of Index page */

/* search-job */

#search_container{
    padding-top: 140px;
     background-color: rgb(242, 246, 253);
    height: 190px;
    width: 100%;
    margin: 3px 3px;
    
}
#headline{
    margin-top: 8vh;
    font-size: 40px;
    color: black;
}
#search_me{
    height: 65px;
    width: 50%;
    border-radius: 20px ;
    border-color: blue;
    padding-left: 10px;
    font-size: 18px;
}
#search_box{
   display: flex;
   justify-content: center;

}
#search_icon{
    background-color: blue;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    right: 4%;
    top: 9px;
    position: relative;
}
#title{
    width: 200px;
}
#jobs_container{
    width: 100%;
    height: 5vh;
    display: flex;
   
   
    
}
.title p{
    width: 34vw;
    font-size: 20px;
    margin-left: -14px;
    padding-left: 40px;
    
}




#jobs_left{
 
 width: 30%;
 
  margin-left: 20px;
 
}
/* #jobs_right{
 
 width: 75%;
background-color: azure; */

#jobs_suitcase{
   background-color: lightblue;
}
.Range{
display: flex;
height: auto;
/* width: 10px;
height: 12px; */
}




.start_range{
height: 40px;
width: 160px;
margin: 10px;
padding-left: 10px;
font-size: 18px;
}


.search_jobs{
        width: 208px;
    height: 33px;
    background-color: blue;
    position: relative;
    left: 70px;
    top: 11px;
}
.search_jobs span{
    position: relative;
    color: white;
    text-align: center;
    margin-left: 27px;
    top: 5px;
    font-family: Arial, Helvetica, sans-serif;
    
}

.search_jobs i{
    position: relative;
    color: white;
   left: 17px;
    top: 5px;

}
.check_jobs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    font-size: 18px;
    margin: 10px;
}

.jobs_inner input{
    height: 29px;
    width: 29px;
    
}
.jobs_inner{
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin-left: 25px;

    
}
.check_jobs p{
width: 90vh;
margin-left:12px;
}

.check_jobs .number{
    margin-left: 100px;
   
}

#jobs_right{
   
    margin: 10px;
    width: 70%;
   
    
}
#Jobs_rights{
    display: flex;
    margin: 2px;
    padding: 10px;
    
}
.Box1{
      box-shadow: 1px 1px 1px 1px rgb(188, 185, 185);
    width: 303px;
    height: 313px;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    bottom: 20px;
    margin: 20px;
    
}
.Box1:hover{
        box-shadow: 1px 1px 1px 1px rgb(136, 127, 242);
        zoom: 1.02;
}

#job_Name{
    display: flex;
}
.job_Names{
    font-size: 12px;
    display: flex;
     background-color: rgb(204, 225, 232);
    height: 40px;
    width: 45px;
    border-radius: 10px;
    font-size: 20px;
    color: lightslategray;
    position:relative;
    text-align: center;
    left: 8px;
    margin-top: 2px;
}
.job_Names i{
    width: 100px;
    position: relative;
    left: 2px;
    top:7px;
    
    
}

.job_Name1{
 font-size: 20px;
   margin-top: 10px;
   margin-left: 21px;
   
  font-family:Arial, Helvetica, sans-serif;
}
.Job_Name2{
    font-size: 25px;
    position: relative;
    font-family:Arial, Helvetica, sans-serif;
    
    left: 11px;
    
}
.job_salary{
   
    position: relative;
    left: 16px;
    font-size: 21px;
    
}
.job_salary i{
    color: blue;
}
.jobs_Related{
  background-color: rgb(204, 225, 232);
    height: 27%;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-around ;
}
.Name_select span{
    font-size: 20px;
color: grey;
}

.Name_select p{
    font-family:Arial, Helvetica, sans-serif;
    width: 8vw;
   margin-top: 7px;
    font-size: 19px;
}
.Logo1{
background-color: lightgray;
    width: 90px;
    border-radius: 17px;
    height: 51px;
    text-align: center;
    margin-top: 12px;    
}
.Logo1 i{
    position: relative;
    top: 17px;
    font-size: 20px;
     border-radius:  7px solid rgb(153, 149, 149);
     color: grey;
}
.btn {
  border: none;
  background-color: inherit;
  padding: 6px 28px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  text-align: left;
}

.btn:hover {background: #eee;}

.success {
    color: blue;
}



.jobs_suitcase{
    margin: 7px;
    background-color: lightsteelblue;
    width: 1.8vw;
    height: 3vh;
    border-radius: 10px;
    text-align: center;
    padding-top:10px;
    padding-left: 14px;
    font-size: 18px;
    color:rgb(76, 94, 129);
   
}
.jobs_Name{
    font-size: 16px;
    margin-top: 17px;
    margin-left: 16px;
    font-family:sans-serif;
    font-weight:lighter;
    color: black;
}
.jobs_Names{
    width: 13px;
}


/* End of Search job */

/* companies.php */


/* Companies */
.content{
    padding-top: 100px;
    height: 100px;
        background-color: rgb(242, 246, 253);
        font-size: 28px;
        text-decoration: black;
        color: #333;

}
#companies_container{
    display: flex;
}
#cont_left{
    width: 30%;
    height: auto;
}
#cont_right{
    width: 70%;
    height: auto;
    padding-top: 3%;
}
.fil_inp{
    
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-sizing: border-box;
}

#left_box_cont{
        padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: #f2f7ff;
    width: 50%;
    margin-left: 25%;
    margin-top: 10%;
}
.optionlist{
        list-style: none;
}
.optionlist li{
    margin-bottom: 10px;
    padding: 5px 0;
    position: relative;
    padding-left: 30px;
    font: inherit;
    vertical-align: baseline;
    display: flex;
    justify-content: space-between;
}
.optionlist li input[type=checkbox]
 {
    display: none;
        margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.optionlist li input[type=checkbox] + label {
    width: 20px;
    height: 20px;
    border: 1px solid #d1d1d1;
    background: #fff;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
}
.box_cont{
    margin-top: 20px;
    height: 280px;
    width: 30%;
        border: 1px solid #eee;
        padding: 10px;
}
.box_cont img{
    height: 65px;
    width: 65px;
    border-radius: 8px;
}
.head_box_count{
    font-size: 18px;
    margin-bottom: 15px;
    min-height: auto;
}
.category_box{
    font-size: 16px;
    color: #666;
}
.location{
        color: #8c96a3;
    margin-top: 15px;
    font-size: 16px;
}
.openings{
        display: inline-block;
    background: #eee;
    border-radius: 5px;
    color: #666;
    padding: 10px 25px;
    font-size: 16px;
}
.box_container_main{
    display: flex;
    flex-wrap: wrap;
}




/* End of companies.php */


/* blog */
#header{
    padding-top: 100px;
    align-self: center;
    width: 95%;
    height: 170px;
    background-color: rgb(242, 246, 253);
    text-align: center;
    font-size: 32px;
    
}
#main_container_blog{
    height: auto;
    width: 100%;
    display: flex;
}
#blog_left{
    width: 75%;
}
#blog_right{
    width: 20%;
}
.blog_container{
    width: 100%;
    display: flex;
    
}
.blog_box_left{
    width: 50%;
    margin: 30px;
}
.blog_box_right{
    width: 50%;
    margin: 30px;
}
.category_blog{
    margin-top: 5px;
    margin-bottom: 10px;
}

.category_blog a{
    color: blue;
    text-decoration: none;
}
#search_blog_box{
    box-shadow: 2px 2px 2px 2px rgb(242, 246, 253);;
    width: 90%;
    height: 300px;
    margin-top: 25px;
    margin-left: 10px;
}
/* end of blog page */

/* contact us */



#blogs{
  width: 100%;
  height: 240px;
  background-color: rgb(220, 236, 241);
  text-align: center;
}
#blogs p{
    font-size: 48px;
    /* margin-top: 20px; */
    position: relative;
    top: 150px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.container_contact{
  width: 100%;
  
    display: flex;
}
.Blogs_left{

width: 25%;
margin: 14px;
white-space: 7px;
padding: 20px;
}

.container_contact span{
  font-weight: 100px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: blue;
  word-spacing: 5px;
  
}
.container_contact p{
  word-spacing: 10px;
  font-size: 50px;
}


  .home_box{
    display: flex;
  }

.home_logo{
     width: 144px;
    height: 61px;
  background-color: blue;
  text-align: center;
 color: white;
 
}
.home_box span{
  margin-left: 40px;
  color: black;
}
.home_box p1{
  color: rgb(61, 60, 60);
}
.home_logo i{
  position: relative;
  top:7px;
  font-size: 40px;

}

.env_logo{
      width: 68px;
    height: 54px;
    background-color: blue;
    text-align: center;
    color: white;
}
.env_logo{
  position: relative;
  font-size: 35px;
}






.phone_logo{
  width: 68px;
    height: 54px;
    background-color: blue;
  text-align: center;
 color: white;
}
.phone_logo i{
  font-size: 40px;
  position: relative;
  top: 10px;
}
p2{
  color: blue;
}



.Blogs_right{
  width: 75%;
margin-top: 22px;
  
}
.big_box{
  display: flex;
  

}

.full_name{
  width: 34.5%;

  
}

.full_email{
  width: 34.5%;
  margin: 82px;
  height: 30px;
}

.Name{
width: 400px;
    margin: 33px;
    height: 50px;
    font-size: 19px;
    padding: 7px;
        background-color: rgb(242, 246, 253);;
  }
  .phone{
    width: 400px;
    margin: 33px;
    height: 50px;
    font-size: 19px;
    padding: 7px;
        background-color: rgb(242, 246, 253);;
  }
  .message_box{
    width: 77%;
    margin-left: 23px;
    height: 200px;
    font-size: 19px;
        background-color: rgb(242, 246, 253);;
}

#submit_button{
    width: 290px;
    height: 57px;
    background-color: blue;
    margin: 93px;
    text-align: center;
    margin-top: 51px;
  }

   #boxes {
    width: 410px;
    margin-top: 210px;
    height: 109px;
    margin: 61px;
    position: relative;
    left: 38px;
    top: 88px;
}


#submit_button span{
  font-size: 23px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  top: 15px;
  
}
/* end of contact us */