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;
    opacity: 20; /* Make the video semi-dark */
}


.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: 80%;
    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 */
}





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;
}
}


/* Services Section */
.services-section {
    text-align: center;
    padding: 60px 20px;
    margin-top: 0;
}

.services-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.service-item {
    background: rgba(0, 86, 210, 0.6); /* Blue transparent background */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
     margin: 10px;
}

.middle-column {
    transform: scale(1.1); /* Bring the middle column forward */
    z-index: 2;
}

.service-item.hidden {
    display: none;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.service-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* See More Button */
.see-more {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #0056D2;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.see-more:hover {
    background: #003f9b;
}

.why-choose-us {
    padding: 200px 30px;
    background-color: #000; /* Light background */
    margin-top: -200px
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
    text-align: center; /* Align title to the left */
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single-column layout for small screens */
    grid-gap: 20px;
}

.choose-item {
    display: flex;
    align-items: center; /* Align number, line, and text horizontally */
    position: relative;
}

.number {
    font-size: 2rem;
    font-weight: bold;
    color: #007AFF;
    margin-right: 10px; /* Add space between number and line */
}

.line {
    height: 2px;
    background: #007AFF;
    flex: 1; /* Allow the line to stretch */
    margin-right: 10px; /* Add space between line and heading */
}

.content h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0; /* Remove extra margins */
    color: #333;
    text-align: left; /* Align heading to the left */
}

.content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6; /* Improve readability */
    text-align: left; /* Align body text to the left */
    margin-top: 8px; /* Add spacing below the heading */
}

/* Responsive Design */
@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for larger screens */
    }
}



.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 */
}

/* Adjustments for smaller screens */
@media (max-width: 868px) {
    #reason1 {
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
    }
    #reason2 {
        top: 35%;
        left: 80%;
        transform: translate(-50%, -50%);
    }
    #reason3 {
        top: 68%;
        left: 50%;
        transform: translateX(-50%);
    }
    #reason4 {
        top: 60%;
        left: 20%;
        transform: translate(-50%, -50%);
    }
    #reason5 {
        top: 25%;
        left: 10%;
    }
    #reason6 {
        top: 50%;
        left: 70%;
    }
}

/* Further alignment for extra small screens */
@media (max-width: 868px) {
    #reason1 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
    #reason2 {
        top: 20%;
        left: 75%;
        transform: translate(-50%, -50%);
    }
    #reason3 {
        top: 75%;
        left: 50%;
        transform: translateX(-50%);
    }
    #reason4 {
        top: 60%;
        left: 25%;
        transform: translate(-50%, -50%);
    }
    #reason5 {
        top: 15%;
        left: 25%;
    }
    #reason6 {
        top: 50%;
        left: 75%;
    }
}




/* Responsive Design */
@media (max-width: 868px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .middle-column {
        transform: none;
    }
}

  


@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 */
}
}
@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 */
}
}
