html, body {
    height: 100%; /* Ensure the html and body fill the height of the viewport */
    margin: 0; /* Reset default margins */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
  }
  
  .content {
    flex: 1; /* The content will expand to fill available space, pushing the footer down */
  }
  
  .main-content {
    flex: 1;
  }

  .footer-section {
    margin-top: auto; /* Pushes the footer to the bottom */
  }
  

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
  .navbar {
    background-color: #202024 !important; /* Changed to black */
}

.navbar .navbar-brand, .navbar .navbar-nav .nav-link {
    color: #FFF; /* Changed to white */
}

.navbar-brand {
    font-size: larger;
}

.navbar .navbar-nav .nav-link:hover {
    color: #AAA; /* Light gray for hover, adjust as needed */
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: white;
  border: 1px solid rgb(0, 0, 0);
}
 

  .contact-section {
    background-color: #f8f8f8; /* Match the color scheme of previous pages */
    color: #333;
    padding-bottom: 4rem;
  }
  
  .section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem; /* Space under the title */
  }
  
  .section-title:after {
    content: '';
    display: block;
    border-top: 2px solid #b4b4b4;
    width: 95%;
    margin: 0.3rem auto 1rem;
  }
  
  .contact-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem; /* Space after the paragraph */
  }
  
  .form-group {
    margin-bottom: 1.5rem; /* Space between form fields */
  }
  
  .form-control {
    border: 1px solid #ccc;
    border-radius: 0.25rem; /* Bootstrap's default border-radius */
  }
  
  .btn-primary {
    background-color: #6c63ff; /* Adjust the color to match your scheme */
    border: none;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem; /* Space above the button */
  }
  
  .btn-primary:hover {
    background-color: #5a52e0; /* A darker shade for hover state */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-section .container {
      padding: 2rem;
    }
  
    .form-group {
      margin-bottom: 1rem; /* Less space between form fields on smaller screens */
    }
  
    .btn-primary {
      width: 100%;
      padding: 0.75rem 0; /* Full-width button with padding */
    }
  }
  
  /* Ensure text is readable over the image background if you use one */
  .contact-section form {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    padding: 2rem;
    border-radius: 0.5rem; /* Slight rounded corners for the form */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Soft shadow for depth */
  }
  
/* Footer css */

.footer-section {
  background-color: #c4c4c4; /* Light background color */
  color: #2c2c2c;
  font-weight: 400;
  padding: 2rem 0;
  position: relative; /* Needed for absolute positioning of logos */
}

.footer-logo {
  max-width: 100px; /* Adjust as needed */
  margin-right: 1rem; /* Space between logos */
  transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.footer-logo:hover {
  opacity: 1; /* Logos stand out on hover */
}

.footer-section p {
  font-family: 'Raleway', sans-serif;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.5;
}

.logo1 {
  max-width: 120px;
}

.logo2 {
  max-width: 200px; /* Size for logo 2 */
}

.logo3 {
  max-width: 290px; /* Size for logo 2 */
}
 
