body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background theme */
    color: #fff; /* White text */
}




header {
    position: relative;
    background: url('header-bg.jpg') no-repeat center center/cover; /* Background image */
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: white; /* Blue text */
    margin: 0;
}

.nav-link {
    color: #fff; /* Default color for all links */
    text-decoration: none;
    padding: 10px;
}

.nav-link.highlight {
    border-bottom: 3px solid #FFD700; /* Mustard yellow border */
    color: #FFD700; /* Optional: Change text color to mustard yellow */
    font-weight: bold; /* Optional: Make the text bold */
}



nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active { /* Gold for active link */
    color: #fff;
}

nav ul li a.contact {
    background-color: #007AFF; /* Blue for Contact Us */
    color: #fff;
}

nav .fas {
    display: none; /* Hidden by default */
    font-size: 25px;
    color: white;
    cursor: pointer;
}


.call-to-action {
    position: relative;
    height: 500px; /* Adjust height as needed */
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.call-to-action video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover; /* Ensures the video covers the section */
    z-index: 0;
}


.call-to-action-content {
    position: relative;
    z-index: 1; /* Content in front of video */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    gap: 15px; /* Space between elements */
    text-align: center; /* Center text */
    margin-bottom: 50px;
}


.call-to-action h1,
.call-to-action p,
.call-to-action button {
position: relative;
z-index: 1; /* Content in front of video */
margin: 0;
}

.call-to-action h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.call-to-action button {
    background-color: #007AFF;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 0; /* Behind content, above video */
}

.call-to-action button:hover {
    background-color: #005BBB;
}
/* General section layout */

/* General section layout */
/* General section layout */
.section {
display: flex;             /* Flexbox layout for horizontal alignment */
justify-content: space-between; /* Space between text and image */
align-items: flex-start;   /* Align content to the top */
padding: 20px;             /* Add spacing around the section */
margin: 20px;                 /* Remove extra margins */
}



  
  /* Login Section */
  .login-section {
    position: relative;
    margin-top: -100px; /* Overlap the header */
  }
  
  .login-container {
    width: 400px;
    max-width: 90%;
    background-color: #0073e6; /* Blue background */
    padding: 2rem;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: translateY(-25%);
  }
  
  .login-container h2 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    margin-bottom: 1rem;
    padding: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .input-group i {
    color: #0073e6;
    margin-right: 10px;
  }
  
  .input-group input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0.5rem;
    font-size: 1rem;
  }
  
  .input-group .toggle-password {
    cursor: pointer;
    color: #0073e6;
  }
  
  .forgot-password {
    margin: 1rem 0;
  }
  
  .forgot-password a {
    color: white;
    text-decoration: none;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  
  .login-btn {
    background-color: #005bb5;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
  }
  
  .login-btn:hover {
    background-color: #003d80;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 868px) {
    .login-container {
      transform: translateY(-20%);
      padding: 1.5rem;
    }
  }
  







.contact-info {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}


.get-in-touch {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
  }
  
  .get-in-touch h2 {
    font-size: 2rem;
    color: #fff;
  }
  
  .get-in-touch .tagline {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #fff;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    color: #007bff;
  }
  
  .contact-item a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }
  
 
  

footer {
    background-color: #111;
    padding: 40px 20px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

footer h3 {
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.social-media {
    text-align: left;
    margin: 20px 0;
}

.social-media h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: left;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #007AFF; /* Change to a highlight color */
    transform: scale(1.2); /* Slight enlargement on hover */
}
.email-subscription input {
  padding: 10px;
  width: calc(100% - 120px);
  margin-right: 10px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
}

.email-subscription button {
  padding: 10px;
  border: none;
  background-color: #007AFF;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
.footer-bottom {
    background-color: #111;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.footer-bottom ul {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    color: #fff;
}

.footer-bottom ul li {
    display: inline;
}

.footer-bottom ul li a {
    font-size: 0.9rem;
    color: #fff;
}
.quicklinks ul {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin: 0;
  display: flex; /* Use flexbox layout */
  flex-wrap: wrap; /* Allow wrapping into multiple rows */

}

.quicklinks ul li {
  flex: 1 1 calc(50% - 20px); /* Make each item take half width */
  margin: 8px 0; /* Add space between each link */
}

.quicklinks ul li a {
  text-decoration: none; /* Remove underline */
  color: #fff; /* Light steel blue color for links */
  font-size: 1rem; /* Readable font size for links */
  transition: color 0.3s, transform 0.3s; /* Smooth transitions for effects */
}

.quicklinks ul li a:hover {
  color: #00bfff; /* Brighten link color on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Responsive Styles */
@media only screen and (max-width: 868px) {
nav .fas {
display: block;
}

nav ul {
display: none; 
position: fixed;
top: 0;
right: -200px;
width: 200px;
height: 100vh;
background: #007AFF;
flex-direction: column;
padding-top: 50px;
z-index: 10;
transition: right 0.5s;
}

nav ul li {
margin: 20px;
}

nav ul .fas {
position: absolute;
top: 20px;
left: 20px;
}
nav ul#menu {
display: flex; /* Show sliding menu */
position: fixed;
top: 0;
right: -200px;
width: 200px;
height: 100vh;
background: #007AFF;
flex-direction: column;
padding-top: 50px;
z-index: 10;
transition: right 0.5s;
}

nav ul#menu li {
margin: 20px;
}

nav ul#menu .fas {
position: absolute;
top: 20px;
left: 20px;
}
}



@media (max-width: 868px) {
.nav ul {
flex-direction: column; /* Stack navigation links vertically */
align-items: center; /* Center-align items */
gap: 10px; /* Add spacing between links */
}

.nav ul li {
margin: 0; /* Reset margins */
width: 100%; /* Full width for each nav item */
text-align: center; /* Center text */
}

.nav ul li a {
display: block; /* Ensure clickable area spans the full width */
padding: 10px 0; /* Add padding for better touch targets */
font-size: 16px; /* Consistent font size */
}

.contact-us {
font-size: inherit; /* Match the font size of other links */
padding: 10px 0; /* Same padding as other links */
}
}

