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 */
}


.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;
}


.about-section {
    background-color: #000;
    padding: 40px 20px;
  }
  
  .about-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: -70px;
  }
  
  .about-item {
    background-color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .about-item h3 {
    font-size: 1.5em;
    color: #0078d7;
    margin-bottom: 15px;
  }
  
  .about-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
  }
  
  @media (max-width: 868px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
  }
  

  
 
  

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;
}

/* 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;
    }
    }
    
    .what-we-do-section {
        background-color: #000;
        padding: 40px 20px;
        margin: 20px;
      }
      
      .what-we-do-section h2 {
        text-align: center;
        font-size: 2.5em;
        color: #fff;
        margin-bottom: 30px;
      }
      
      .what-we-do-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
      }
      
      .what-we-do-item {
        background-color: #0078d7;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      .what-we-do-item .icon {
        font-size: 3em;
        color: #fff;
        margin-bottom: 15px;
      }
      
      .what-we-do-item h3 {
        font-size: 1.5em;
        color: #fff;
        margin-bottom: 10px;
      }
      
      .what-we-do-item p {
        font-size: 1em;
        color: #000;
        line-height: 1.6;
      }
      .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 */
    }
      @media (max-width: 868px) {
        .what-we-do-grid {
          grid-template-columns: 1fr;
        }
      }
      
    
    
    @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 */
    }
    }
    