* {
    margin: 0;
    padding: 0;
    Font-family: sans-serif;
 }
  
 /* Simple fix for whitespace */
 html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
 }
  
 .header {
    min-height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.911);
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 0;
 }
  
 nav {
   display: flex;
   padding: 2% 2%;
   justify-content: space-between;
   align-items: center;
   
 }

 #response_message {
   margin-top: 15px;
   padding: 10px;
   border-radius: 5px;
   display: none;
}

#response_message .success {
   color: #28a745;
   background-color: rgba(40, 167, 69, 0.1);
   border: 1px solid #28a745;
   padding: 10px;
   border-radius: 4px;
}

#response_message .error {
   color: #dc3545;
   background-color: rgba(220, 53, 69, 0.1);
   border: 1px solid #dc3545;
   padding: 10px;
   border-radius: 4px;
}

#response_message .loading {
   color: #17a2b8;
   background-color: rgba(23, 162, 184, 0.1);
   border: 1px solid #17a2b8;
   padding: 10px;
   border-radius: 4px;
}

 .logo-container {
   position: absolute;
   top: 0px;
   left: 45px;
   background-color: white;
   border-radius: 2px;
   padding: 10px;
   width: 230px;
   height: 230px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.logo {
   width: 400px;
   height: auto;
}

.nav-links {
   flex: 1;
   text-align: right;
}

.nav-links ul li {
   list-style: none;
   display: inline-block;
   padding: 100px 15px;
   position: relative;
   margin-top: -55px;
   bottom: 28px;
}

.nav-links ul li a {
   color: white;
   text-decoration: none;
   font-size: 20px;
}
  
 .nav-links ul li::after {
    content: "";
    width: 0%;
    height: 4px;
    transition: 0.5s;
    display: block;
    background: white;
    margin: auto;
 }
  
 .nav-links ul li:hover::after{
    width: 100%;
 }
  
 .contact {
    color: black;
    margin: 250px auto;
    padding: 20px 40px;
    width: 80%;
    background-color: white;
    z-index: 1;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
 }
  
 .contact h1{
    font-size: 60px;
 }
  
 .contact-box{
    background: white;
    color: black;
    display: flex;
    margin: 75px;
 }
  
 .contact-left {
    flex-basis: 60%;
    padding: 40px 60px;
 }
  
 .contact-right {
    flex-basis: 60%;
    padding: 40px;
    background: rgba(24, 24, 24, 0.874);
 }
  
 .contact p {
    margin-bottom: 40px;
 }
  
 .input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
 }
  
 .input-row .input-group {
    flex-basis: 45%;
 }
  
 input{
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    padding-bottom: 5px;
 }
  
 textarea{
    width: 100%;
    border: 1px solid black;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
 }
  
 label {
    margin-bottom: 6px;
    display: block;
    color: grey;
 }
  
 button {
    width: 100px;
    background: transparent;
    border: 1px solid;
    outline: none;
    color: black;
    height: 35px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px rgba(28, 0, 181, 0.4);
    cursor: pointer;
 }
  
 .contact-left h3 {
    color: black;
    font-weight: 600px;
    margin-bottom: 30px;
 }
  
 .contact-right h3 {
    color: white;
    font-weight: 600px;
    margin-bottom: 30px;
 }
  
 tr td:first-child {
    padding-right: 20px;
 }
  
 tr td{
    padding-top: 25px;
 }
  
 .contact-right{
    color:white;
 }
 
 .contact p {
   padding-top: 10px;
}

.footer {
   background-color: #222;
   color: white;
   padding: 60px 30px 30px;
   margin-top: 0;
   border-top: 3px solid #333;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
}

.footer-logo {
   margin-bottom: 30px;
   text-align: center;
}

.footer-logo img {
   width: 180px;
   height: auto;
   background-color: white;
   padding: 10px;
   border-radius: 5px;
}

.footer-links {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 40px;
}

.footer-column {
   flex: 1;
   min-width: 200px;
}

.footer-column h3 {
   font-family: 'Roboto Slab', serif;
   font-size: 20px;
   margin-bottom: 20px;
   position: relative;
   padding-bottom: 10px;
}

.footer-column h3::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: 0;
   width: 50px;
   height: 3px;
   background-color: #fff;
}

.footer-column ul {
   list-style: none;
   padding: 0;
}

.footer-column ul li {
   margin-bottom: 12px;
}

.footer-column a {
   color: #ccc;
   text-decoration: none;
   transition: color 0.3s;
}

.footer-column a:hover {
   color: white;
   text-decoration: underline;
}

.footer-column p {
   color: #ccc;
   margin-bottom: 12px;
   font-size: 14px;
   line-height: 1.5;
}

.newsletter-form {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 15px;
}

.newsletter-form input {
   padding: 10px;
   border: none;
   border-radius: 4px;
   background-color: #333;
   color: white;
}

.newsletter-form button {
   padding: 10px;
   border: none;
   border-radius: 4px;
   background-color: #444;
   color: white;
   cursor: pointer;
   transition: background-color 0.3s;
}

.newsletter-form button:hover {
   background-color: #555;
}

.footer-bottom {
   padding-top: 20px;
   border-top: 1px solid #444;
   text-align: center;
   font-size: 14px;
   color: #999;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
}

.footer-bottom a {
   color: #ccc;
   text-decoration: none;
}

.footer-bottom a:hover {
   color: white;
}

/* For Font Awesome Icons (you'll need to add the link to FontAwesome in your head) */
.social-links li a i {
   margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
   .footer-links {
       flex-direction: column;
       gap: 30px;
   }
   
   .footer-column {
       width: 100%;
   }
   
   .footer-bottom {
       flex-direction: column;
       gap: 10px;
   }
}