* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Navbar */
.header {
    position: sticky;   /* scroll pe bhi upar chipka rahe */
    top: 0;
    z-index: 1000;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);   /* thoda mota + spread */
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.log {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: black;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: black;
    border: 2px solid white;
}

.btn-primary {
    background: #032d0dd8;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1f2937;
}

.highlight {
  color: #225c57;
}

.subtext {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #6b7280;
}

.trending {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #6b7280;
}

.trending a {
  color: #225c57;
  text-decoration: none;
  margin: 0 5px;
}

.trending a:hover {
  text-decoration: underline;
}

/* Search Bar */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.search-bar input[type="text"] {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  flex: 1;
  min-width: 180px;
}

.search-btn {
  background-color: #225c57;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.search-btn:hover {
  background-color: #0e9f6e;
}

/* Hero Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 400px;
  max-width: 100%;
  height: 400PX;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .search-bar {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  .search-bar input,
  .search-btn {
    width: 100%;
    max-width: 320px;
  }
}
.trusted-companies {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.trusted-companies p {
  font-size: 24px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.companies-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px 100px; /* Increased spacing */
  max-width: 1100px;
  margin: 0 auto;
}

.companies-logos img {
  height: 55px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.companies-logos img:hover {
  transform: scale(1.1);
}
.categories-section {
  text-align: center;
  padding: 60px 20px;
}

.section-subtitle {
  color: #3a8672;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2d2d2d;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-box {
  background-color: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.category-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.category-box h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
}

.category-box p {
  font-size: 14px;
  color: #888;
}

.category-box:hover,
.category-box.active {
  background-color: #155e4f;
  color: white;
}

.category-box:hover h3,
.category-box:hover p,
.category-box.active h3,
.category-box.active p {
  color: white;
}

.category-box:hover img,
.category-box.active img {
  filter: brightness(0) invert(1);
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

.card {
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.card:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .card { min-width: 200px; }
}
@media (max-width: 480px) {
  .card { min-width: 150px; }
}
h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}



  .categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .categories span {
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
  }

  .categories span.active {
    border-bottom: 2px solid #256D85;
    font-weight: bold;
  }

  .carousel-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
  }

.card {
  min-width: 300px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Vertical & horizontal center content */
  display: flex;
  flex-direction: column;
  align-items: center;  /* horizontal center */
  justify-content: center; /* vertical center */
  text-align: center;
}

.card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  
  /* Center the image in its own container */
  display: block;
  margin-left: auto;
  margin-right: auto;
}


  .card h3 {
    margin: 10px 0;
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }

  .card .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .card button {
    background: #256D85;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
  }

  .arrow.left { left: -20px; }
  .arrow.right { right: -20px; }

  @media (max-width: 768px) {
    .card { min-width: 250px; }
    .arrow.left { left: -10px; }
    .arrow.right { right: -10px; }
  }

  @media (max-width: 480px) {
    .card { min-width: 200px; }
  }

  .view-all {
    text-align: center;
    margin-top: 20px;
    color: #256D85;
    cursor: pointer;
    font-weight: bold;
  }
.slider-container, .carousel-container {
  position: relative;
  overflow: hidden;
}

.slider-track, .carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.arrow, .upcoming-arrow, .active-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: rgba(0,0,0,0.5); */
  color:white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.upcoming-arrow.left, .active-arrow.left {
  left: 0;
}

.upcoming-arrow.right, .active-arrow.right {
  right: 0;
}

.logo {
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center;     /* Vertical center */
  padding: 20px 0;
}

.logo img {
  max-width: 5000px;   /* apne hisaab se size adjust kar sakte ho */
  height: 300px;       /* maintain aspect ratio */
  object-fit: contain;
}



.apply-now-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.apply-now-btn {
  background-color: #1a5c59;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.apply-now-btn:hover {
  background-color: #134745;
}

.remote-jobs-slider h2 {
  text-align: center;
  margin-bottom: 20px;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.categories span {
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.categories span.active {
  border-bottom: 2px solid #256D85;
  font-weight: bold;
}

.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.card {
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px auto;
  display: block;
}

.card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #555;
}

.card:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.view-all {
  text-align: center;
  margin-top: 20px;
  color: #256D85;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 768px) {
  .card { min-width: 200px; }
}

@media (max-width: 480px) {
  .card { min-width: 150px; }
}


.newsletter-section {
  background-color: #225c57; /* from the image */
  background-image: radial-gradient(circle at right, rgba(255, 255, 255, 0.05) 10%, transparent 10.01%),
                    radial-gradient(circle at right, rgba(255, 255, 255, 0.05) 10%, transparent 10.01%);
  background-size: 180px 180px;
  color: white;
  padding: 60px 40px;
  border-radius: 25px;
  margin: 60px auto;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.newsletter-text {
  flex: 1;
  min-width: 250px;
}

.newsletter-text h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left; /* heading ko left align karega */
}


.newsletter-text p {
  font-size: 14px;
  color: #e0e0e0;
}

.newsletter-form {
  display: flex;
  background-color: white;
  border-radius: 30px;
  overflow: hidden;
  flex: 1;
  max-width: 400px;
}

.newsletter-form input[type="email"] {
  border: none;
  padding: 14px 20px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  background-color: white;
  color: white;
  border: none;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button{
  background-color: #1b4743;
}

@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }
}
.footer {
  background-color: #fff;
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

/* .lo {
  width: 120px;
  margin-bottom: 15px;
} */

.footer-about {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
}

.footer-section ul li a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #225c57;
}

.footer-contact i {
  margin-right: 8px;
  color: #225c57;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

