/* General */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Navbar */
  .navbar {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  /* Cards on Home Page */
  .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
    border-radius: 10px;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Card title and text */
  .card-title {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .card-text {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* Buttons */
  .btn-primary {
    background-color: #0069d9;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  .btn-success {
    background-color: #28a745;
    border: none;
  }
  
  .btn-success:hover {
    background-color: #218838;
  }
  
  /* Form Inputs */
  .form-control {
    border-radius: 0.35rem;
    border: 1px solid #ced4da;
  }
  
  form .form-group label {
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  
  /* Responsive spacing */
  .container {
    max-width: 960px;
  }
  
  /* Job details page */
  h2 {
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  h5, h6 {
    color: #555;
  }
  
  p {
    font-size: 1rem;
    color: #333;
  }
  
footer {
    background-color: #343a40 !important;
    padding: 20px 0;
    margin-top: 50px;
  }

footer a {
    color:white !important;
    text-decoration: none;
  }

footer a:hover {
    text-decoration: underline;
  }

  footer p{
      color: white
  }
  
  /* === Share Buttons === */
.share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.share-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.share-btn i {
  font-size: 1.1rem;
}

.fb-icon {
  color: #1877f2;
}

.whatsapp-icon {
  color: #25D366;
}

.insta-icon {
  color: #E4405F;
}

.link-icon {
  color: #333333;
}
  