/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f5f9ff;
  color: #333;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #0078d7;
  color: white;
  flex-wrap: wrap;
}

header .logo {
  font-size: 1.8em;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #cce7ff;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 20px;
  min-height: 500px;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat,
              url('https://images.unsplash.com/photo-1590551329360-8b16f2c1f58b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,60,120,0.6);
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 300px;
}

.hero-images img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.hero-images img:nth-child(2) {
  transform: rotate(5deg);
}

.hero-images img:nth-child(3) {
  transform: rotate(-3deg);
}

.hero-images img:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0078d7, #00b0ff); /* Gradient */
  color: white;
  font-weight: bold;
  font-size: 1.25em;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Hover effect: lift + shadow + slight movement of gradient */
.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #005fa3, #0078d7);
}

/* Optional animated shine effect */
.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cta-button:hover::after {
  left: 125%;
}


/* FEATURES */
.features {
  padding: 60px 50px;
  text-align: center;
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: #0078d7;
  color: #fff;
  padding: 50px 20px 20px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.feature h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.feature p {
  font-size: 0.95em;
  line-height: 1.5;
}

/* Feature icon images */
.feature-img {
  width: 100px;
  height: 100px;
  border-radius: 90%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid white;
}

/* JOBS */
.jobs {
  padding: 60px 50px;
  text-align: center;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.job-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.job-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.job-info {
  padding: 20px;
  text-align: left;
}

.job-info h3 {
  margin-bottom: 10px;
}

.job-info p {
  margin-bottom: 15px;
  font-size: 0.95em;
}

.price-tag {
  font-weight: bold;
  color: #0078d7;
  font-size: 1.1em;
}

/* FOOTER */
footer {
  padding: 20px 50px;
  text-align: center;
  background-color: #0078d7;
  color: white;
  margin-top: 50px;
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  .hero-container {
    flex-direction: column;
    gap: 30px;
  }

  .hero-images {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .hero-images img {
    width: 120px;
    height: 120px;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1em;
  }
}
.job-detail {
  padding: 60px 50px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.job-detail h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #0078d7;
}

.job-images {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.job-images img {
  width: calc(33% - 10px);
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.job-detail p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-detail .price-tag {
  font-size: 1.3em;
  font-weight: bold;
  color: #0078d7;
  margin-bottom: 20px;
}

.job-detail .cta-button {
  display: inline-block;
  background-color: #0078d7;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.job-detail .cta-button:hover {
  background-color: #005fa3;
}


/* SIGN IN SECTION */
.sign-section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
  position: relative;
}

.sign-section::before {
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,120,215,0.6);
  z-index: 1;
}

.sign-container {
  position: relative;
  z-index: 2;
  background: white;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.sign-container h1 {
  font-size: 2em;
  color: #0078d7;
  margin-bottom: 10px;
}

.sign-container p {
  font-size: 1em;
  margin-bottom: 25px;
  color: #555;
}

.sign-container label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.sign-container input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
  transition: all 0.3s;
}

.sign-container input:focus {
  border-color: #0078d7;
  box-shadow: 0 0 5px rgba(0,120,215,0.5);
  outline: none;
}

.sign-container .cta-button {
  width: 100%;
  margin-top: 10px;
  font-size: 1.1em;
}

.signup-link {
  margin-top: 15px;
  font-size: 0.95em;
  color: #555;
}

.signup-link a {
  color: #0078d7;
  font-weight: bold;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media screen and (max-width: 500px) {
  .sign-container {
    padding: 30px 20px;
  }

  .sign-container h1 {
    font-size: 1.7em;
  }
}



/* SIGN UP SECTION uses same as sign-section */
.or {
  text-align: center;
  margin: 20px 0;
  font-weight: bold;
  color: #555;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-btn {
  display: block;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1em;
}

.social-btn.google {
  background-color: #db4437; /* Google Red */
  box-shadow: 0 5px 15px rgba(219,68,55,0.4);
}

.social-btn.google:hover {
  background-color: #c33d2f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(219,68,55,0.5);
}

.social-btn.facebook {
  background-color: #4267B2; /* Facebook Blue */
  box-shadow: 0 5px 15px rgba(66,103,178,0.4);
}

.social-btn.facebook:hover {
  background-color: #37589b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(66,103,178,0.5);
}

.signup-link {
  margin-top: 20px;
  font-size: 0.95em;
  color: #555;
}

.signup-link a {
  color: #0078d7;
  font-weight: bold;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 500px) {
  .sign-container {
    padding: 30px 20px;
  }

  .social-buttons {
    gap: 10px;
  }
}
