/* Global Styles */
body {
    font-family: 'Cutive', serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
  }
  
  /* Navigation Bar */
  .navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link.active {
    font-weight: bold;
    border-bottom: 2px solid #ffffff;
  }
  
  /* Header Section */
  header {
    background-color: #343a40;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  
  header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  header p {
    font-size: 1.5rem;
  }
  
  /* Buttons */
  .btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  /* Card Styling */
  .card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .project-details {
    display: none;
    padding-top: 10px;
  }
  
  /* Footer */
  footer {
    background-color: #343a40;
    color: #fff;
  }
  
  footer a {
    color: #ffffff;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Alerts */
  .alert {
    margin-top: 75px;
  }
  
  /* Contact Form Styles */
  form {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Dark Mode */
  body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
  }
  
  body.dark-mode .navbar {
    background-color: #1f1f1f;
  }
  
  body.dark-mode .card {
    background-color: #1f1f1f;
    color: #e0e0e0;
  }
  
  body.dark-mode footer {
    background-color: #1f1f1f;
  }
  
  /* Dark Mode Toggle Button */
  #theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #343a40;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  #theme-toggle:hover {
    background-color: #007bff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2rem;
    }
  
    header p {
      font-size: 1.2rem;
    }
  
    .card {
      margin-bottom: 20px;
    }
  }
  