body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Default styles for WhatsApp */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #1dad10;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  line-height: 1; /* Reset line height to center vertically */
}

.whatsapp-icon {
  width: 40px; /* Adjust the width to your preferred size */
  height: 40px; /* Adjust the height to your preferred size */
}

/* Media query for smaller screens (e.g., smartphones) */
@media screen and (max-width: 767px) {
  .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
  }
}

/* Media query for medium-sized screens (e.g., tablets) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .whatsapp_float {
      width: 50px;
      height: 50px;
      bottom: 30px;
      right: 20px;
      font-size: 26px;
  }
}

/* Media query for larger screens (e.g., desktops) */
@media screen and (min-width: 1025px) {
  .whatsapp_float {
      /* Keep the default styles for larger screens */
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 1000; /* Ensure the navigation menu appears on top of the videos */
  background: transparent; /* Set background color to transparent */
}

header h1 {
  margin: 0;
}

nav {
  background-color: #13111A;; /* Dark navy blue color */
  height: 60px; /* Adjust the height as needed */
  width: 100%; /* Expand the width to 100% of its container */
  display: flex; /* Use flexbox for easy centering */
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Center items vertically */
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 40px;
  position: relative;
}

nav ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  height: 300%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}


nav ul li.highlight {
  background-color: blue; /* Default highlight color */
  height: calc(100% + 20px); /* Increase height to cover the full height of the parent li */
  width: calc(100% + 20px); /* Increase width to cover the full width of the parent li */
}

main {
  padding: 0;
}

section {
  padding: 10px 0;
  margin: 0;
}

#home {
  padding: 0;
  margin: 0;
  position: relative;
  height: 100vh; /* Set the section height to full viewport height */
}

.top-video-wrapper, .bottom-video-wrapper {
  position: relative;
  width: 126.5%; /* Adjust the width as needed */
  height: 120vh; /* Set the height to 50% of the viewport height */
  overflow: hidden; /* Hide overflowing video */
  margin-left: -14%; /* Shift the videos to the left to compensate for the increased width */
}

/* Ensure the video fills the container */
.top-video-wrapper video, .bottom-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio without cropping */
}

/* Style for the videos */
.top-video, .bottom-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the container */
}

section#about{
  background-color: black;
}

#about {
  padding-top: 0vh; /* Adjust this value to create space for the #home section */
}

section#footer{
  background: white;
}

section#about h2{
  color:white;
}


.about-content {
  position: relative;
  display: flex;
  flex-direction: column; /* Change flex direction to column */
  align-items: center; /* Align items in the center horizontally */
}

.about-content img {
  width: calc(100% + 400px); /* Increase width by 1000px to the left and right */
  position: relative; /* Position the image relatively */
  left: -70px; /* Move the image 500px to the left */
  height: 732px;
  top: 0; /* Align the image to the top within the section */
  z-index: 0; /* Ensure the image is behind the content */
}

#about .top-video {
  position: relative;
  width: 126.5%; /* Adjust the width as needed */
  height: 125vh; /* Set the height to full viewport height */
  margin-left: -14%; /* Shift the videos to the left to compensate for the increased width */
  overflow: hidden; /* Hide overflowing video */
}

#about .top-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio without cropping */
}


section#services{
  background-color: black;
}

section#services h2{
  color:white;
}

section#clients {
    background-image: url('images/Our Clients 2.jpg');
    background-size: cover;
    background-position: center;
    height: 120vh;
    /* Add any other background properties you need */
}

.client-logos img {
    display: none; /* Hide the img tag */
}


section#clients h2{
  color: white;
}

.project-header {
  text-align: center;
  margin-bottom: 20px;
}

.feature-set {
  list-style: none;
  padding: 20px;
  background-color: #f8f9fa; /* Light background color */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

/* Style each list item */
.feature-set li {
  margin-bottom: 30px; /* Add more space between each item */
}

/* Style the heading */
.feature-set h3 {
  color: #333; /* Dark text color */
  font-size: 1.2rem; /* Larger font size */
  margin-bottom: 10px; /* Add space below the heading */
}

/* Style the paragraph */
.feature-set p {
  color: #666; /* Slightly darker text color */
  font-size: 1rem; /* Normal font size */
  line-height: 1.4; /* Improve readability */
  margin-bottom: 15px; /* Add space below the paragraph */
}

.feature-card {
  position: relative;
  width: 250px;
  height: 300px;
  border: 5px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  transition: width 0.3s, height 0.3s;
}

.feature-card:hover {
  width: 250px;
  height: 300px;
}

.card-title {
  position: absolute;
  top: 50%; /* Position the title vertically in the center */
  left: 0; /* Position the title at the left of the card */
  width: 100%; /* Make the title span the full width of the card */
  transform: translateY(-50%); /* Adjust vertical position */
  text-align: center;
  z-index: 1;
  transition: opacity 0.3s;
  color: white; /* Change font color to white */
  background-color: black; /* Add background color */
  padding: 5px 10px; /* Add padding for better visibility */
  border-radius: 5px; /* Add border radius for rounded corners */
}

.feature-card:hover .card-title {
  opacity: 0;
}

.card-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  padding: 20px; /* Adjust padding as needed */
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(100%);
  transition: transform 0.3s;
  font-size: 14px; /* Adjust font size as needed */
  line-height: 1.5; /* Adjust line height as needed */
}

.feature-card:hover .card-info {
  transform: translateY(0);
}

.card-icon {
  font-size: 24px;
}

.card-text {
  margin-top: 20px;
  display: none;
}

.feature-card:hover .card-text {
  display: block;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.feature-list li {
  flex: 0 1 calc(33.33% - 20px);
  margin: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .feature-list li {
    flex-basis: calc(50% - 20px);
  }
} 

section#clients h2{
  text-align: center;

}

#footer .container {
  max-width: 1500px;
  margin: auto;
  font-size: 24px;
}

#footer h1 {
  text-align: center;
}

.footer-list {
  list-style-type: none;
  padding: 0;
}

.footer-brand {
  margin-bottom: 10px;
  text-align: center;
}

.social-links {
  list-style-type: none;
  padding: 0;
  text-align: center;
  margin-bottom: 20px; /* Add margin below social links */
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.social-links a {
  color: black;
  text-decoration: none;
}

.social-links a:hover {
  color: black;
}

.social-links a i {
  font-size: 50px; /* Adjust icon size as needed */
}

.footer-links {
  text-align: center; /* Center align footer links */
}

.contact-info {
  margin-bottom: 10px; /* Add margin between contact info */
}

.contact-info i {
  font-size: 24px; /* Adjust icon size */
  margin-right: 10px; /* Add spacing between icon and text */
}

.contact-text {
  font-size: 18px; /* Adjust font size */
}