/* General styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f7f7f7;
  }
  
  h1, h2, h3 {
    color: #00796b;
  }
  
  /* Navbar Styling */
  .navbar {
    background-color: #00796b;
  }
  
  .navbar-brand, .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
  }
  
  .navbar-brand img {
    margin-right: 10px;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 50px 2px;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  /* Section Headers */
  .section-header {
    color: #009688;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
  }
  
  /* Contact Form */
  #contactForm {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .form-group label {
    color: #00796b;
    font-weight: 600;
  }
  
  #contactForm input, #contactForm textarea {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px;
  }
  
  .btn-primary {
    background-color: #009688;
    border: none;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .btn-primary:hover {
    background-color: #00796b;
  }
  
  #submitStatus {
    color: green;
    font-weight: bold;
    margin-top: 10px;
  }
  
  /* Footer */
  footer {
    background-color: #00796b;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
  }
  
  footer a {
    color: #ffffff;
    text-decoration: none;
  }
  
  footer a:hover {
    color: #f1f1f1;
  }
  
  /* Additional Spacing */
  .container {
    padding-top: 20px;
  }
  
  /* Section Headers */
.section-header {
    color: #00796b;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
  }
  
  /* Gallery Card Styles */
  .job-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .job-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .job-card img {
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #00796b;
  }
  
  .job-card .card-body {
    text-align: center;
  }
  
  .job-card .card-title {
    color: #00796b;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .job-card .card-text {
    color: #666;
    font-size: 0.9rem;
  }
  