header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fc9012;
    color: white;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }

  body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f4f8;
  }
  

/* Gallery Page Styles */
.gallery-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.gallery-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.gallery-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Active Page Styling in Navigation */
nav ul li a.active {
    font-weight: bold;
    color: #007bff;
    border-bottom: 2px solid #007bff;
}


/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
  }
  
  footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  }
  
  footer .social-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .features-grid {
      flex-direction: column;
    }
  
    header {
      flex-direction: column;
      text-align: center;
    }
  }
  