@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 120px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
  font-size: 20px;
  color: #07132b;;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  gap: 5px;
}

nav a {
    font-size: 17px;
    color: #07132b;
    text-decoration: none;
    font-weight: 500;
    margin-left: 12px;
    transition: .3s;
}

nav a:hover,
nav a.active {
    color: rgb(121, 153, 156);
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    color: black;
    font-weight: 700;
}

section:nth-child(odd) {
    /* background: white; */
}

.login-btn {
  background-color: #07132b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  font-size: 15px;
}

.login-btn:hover {
  background-color: green; /* Set the hover color as needed */
  color: white;
}

/* WhatsApp Button*/

.whatsapp-btn {
  position: fixed;
  bottom: 20px; /* Adjust as needed */
  right: 20px; /* Adjust as needed */
  z-index: 9999; /* Ensure it's above other content */
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-btn:hover {
  transform: scale(1.1); /* Add a small scale effect on hover */
}

/* Styles for the dropdown menu */
.dropdown-menu {
  display: none;
}

@media screen and (max-width: 1080px) {
  .nav-menu {
      display: none; /* Hide the nav menu by default on small screens */
  }

  .dropdown-menu.active {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #f9f9f9;
      z-index: 1;
  }

  .dropdown-menu a {
      display: block;
      padding: 10px 20px;
      color: #333;
      text-decoration: none;
      transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
      background-color: #ddd;
  }

      /* Hide the original navbar */
      header nav {
        display: none;
    }

  /* Show the menu icon */
  .menu-icon {
      display: flex;
      align-items: center;
  }

  .about_image {
    display: none;
  }

  .about_image img {
    display: none;
  }

  .geotracking_container {
    flex-direction: column;
    align-items: center; /* Center the content vertically */
    flex: 1;
    width: 100%; /* Take up full width */
    padding: 20px 0; /* Adjust padding */
    text-align: center; /* Center text */
  }

    .geotracking_image {
    display: none;
  }

  .geotracking_image img {
    display: none;
  }

  .service_box {
    flex: 0 0 calc(50% - 40px); /* Adjust the width for smaller screens */
}

.contact_container {
  flex-direction: column; /* Switch to column layout for smaller screens */
}

.contact_info,
.contact_form {
  flex: 1; /* Take up full width for smaller screens */
  margin-bottom: 30px; /* Add some space between sections */
}

}

/* Home section*/

.Hero {
  background-image: url('../Images/home.jpg'); /* Check the path */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.2); /* Adjust the alpha channel for transparency rgba(0, 0, 0, 0.5) */
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 5px;
}

.home_container {
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha channel for transparency */
  padding: 25px; /* Adjust padding as needed */
  max-width: 900px; /* Set the maximum width of the black box */
  width: 100%;
}

.home_container h1 {
  color: #fff;
  font-size: 40px; /* Adjust the font size for the title */
  margin-bottom: 10px; /* Add some space between title and description */
  padding-bottom: 10px;
  padding-top: 30px;
}

.home_container p {
  color: #fff;
  font-size: 15px; /* Adjust the font size for the description */
  padding: -10px;
  padding-top: 30px;
}

.home_container a {
  padding: 10px 30px;
  background-color: #ca0d0d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 0px;
  text-decoration: none;
}

.home_container a:hover {
  color: #ca0d0d;
  background-color: white;
}

/* About section*/

.about_section {
  padding: 2px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_container {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
}

.about_text {
  flex: 1;
  padding: 220px 50px;
  background-color: #07132b; /* Add a background color to the text container */
}

.about_text h2 {
  font-size: 40px;
  margin-bottom: 40px;
  margin-top: -80px;
  color: #fff;
}

.about_text p {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
}

.about_image {
  background-image: url('../Images/logo3.jpeg');
  background-repeat: no-repeat;
  flex: 1;
  padding: 20px;
  margin-top: 50px;
  margin-left: 100px;
}

.about_image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: Add border-radius for a rounded image */
}

/* Tracking section*/

.geotracking_section {
  padding: 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin-top: -40px;
}

.geotracking_container {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  margin-top: -20px;
}

.geotracking_description {
  flex: 1;
  padding: 220px 50px;
  background-color: #ffffff; /* Add a background color to the text container */
  order: 2; /* Switch the order of the flex items */
}

.geotracking_description h2 {
  font-size: 35px;
  margin-bottom: 40px;
  margin-top: -80px;
  color: #07132b;
}

.geotracking_description p {
  font-size: 16px;
  color: rgb(61, 57, 57);
  margin-bottom: 20px;
}

.geotracking_image {
  background-image: url('../Images/map.jpeg');
  background-repeat: no-repeat;
  flex: 1;
  padding: 20px;
  margin-top: 50px;
  margin-right: 30px;
  margin-left: 25px;
  order: 1; /* Switch the order of the flex items */
  background-position: center; /* Center the background image */
}

.geotracking_image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: Add border-radius for a rounded image */
}

/* Center the button */
.button_container {
  text-align: center;
  margin-top: -75px;
  margin-bottom: -125px;
}

/* Style the button */
.contact_button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ca0d0d; /* Set the button color as needed */
  color: white;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.2s ease-in-out;
  font-size: 16px;
  margin-top: 20px;
}

.contact_button:hover {
  background-color: #07132b; /* Set the hover color as needed */
  color: white;
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
  .geotracking_container {
      flex-direction: column;
  }
}

/* Services Section*/

.services_section {
  background-color: #07132b; /* Set the background color as needed */
  padding: 80px 0; /* Adjust the padding as needed */
  padding-bottom: 10px;
}

.services_title {
  text-align: center;
  align-items: center;
  margin-bottom: 0px; /* Adjust margin as needed */
  padding-bottom: 10px;
}

.services_title h2 {
  font-size: 36px; /* Adjust font size as needed */
  color: #fff
}

.services_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1400px;
  margin: 30px auto;
}

.service_box {
  flex: 0 0 calc(30.33% - 5px); /* Adjust the width and margin as needed */
  height: 350px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin: 10px;
  padding: 40px;
  padding-top: 0px;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.service_box:hover {
  transform: translateY(-10px);
}

.service_box i {
  font-size: 36px;
  color: #07132b;
  margin-top: 0px;
  margin-bottom: 10px;

}

.service_box h3 {
  font-size: 20px;
  margin-top: 0px;
  color: black;
  margin-bottom: 0px;

}

.service_box p {
  font-size: 16px;
  color: rgb(61, 57, 57);
  margin-bottom: -60px;
}

.service_box a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 30px;
  background-color: #ca0d0d; /* Set the button color as needed */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
  font-size: 20px;
}

.service_box a:hover {
  background-color: #0056b3; /* Set the hover color as needed */
  color: #fff;
}

.service_box .description {
  display: none;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.986);
  padding: 0px;
  max-height: 280px;
  height: 100%;
  border-radius: 10px;
  width: 90%;
  max-width: 320px; 
  text-align: center;
  font-size: 14px;
  z-index: 999;
}

.service_box:hover .description {
  display: block;
}


@media (max-width: 768px) {
  .service_box {
      flex: 0 0 calc(50% - 40px); /* Adjust the width for smaller screens */
  }
}

/* Contact section*/

.contact_section {
  background-color: #f7f7f7; /* Set the background color as needed */
  padding: 80px 0; /* Adjust the padding as needed */
}

.contact_container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  background-color: white;
  width: 100%;
  padding: 30px;
  padding-top: 100px;
}

.contact_info {
  flex: 0 0 calc(50% - 20px); /* Adjust the width and margin as needed */
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  padding-top: 50px;
}

.map_container {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 10px;
  height: 200px;
}

.map_container iframe {
  width: 90%;
  border: none;
}

.contact_form {
  flex: 0 0 calc(50% - 20px); /* Adjust the width and margin as needed */
  padding: 20px;
  box-sizing: border-box;
  background-color: #07132b;
  padding: 40px;
}

.contact_info h2 {
  font-size: 36px;
  color: black;
  padding-bottom: 30px;
}

.contact_form h2 {
  font-size: 36px;
  color: white;
}

.contact_info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  padding-left: 20px;
}

.contact_form form {
  display: flex;
  flex-direction: column;
}

.contact_form label {
  font-size: 16px;
  margin-bottom: 8px;
  color: white;
}

.contact_form input,
.contact_form textarea {
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact_form input[type="submit"] {
  background-color: #ca0d0d; /* Set the button color as needed */
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.contact_form input[type="submit"]:hover {
  background-color: #04a13e; /* Set the hover color as needed */
}

/* Form submitted*/
.Message {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Adjust as needed */
  font-size: 20px;
}

/* Style the paragraph */
.message_container p {
  margin-bottom: 20px; /* Add margin at the bottom */
}

/* Style the message content */
.message_container {
  text-align: center;
}

/* Style the button */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ca0d0d; /*  color */
  color: #fff; /* White text color */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #07132b; /* Darker blue color on hover */
}


/* footer section*/
.footer {
  text-align: center;
  padding: 20px 0;
  background-color: #07132b; /* Set the background color for the footer */
  color: #fff;
}

.social_icons {
  margin-bottom: 10px;
}

.social_icon {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.footer_line {
  width: 50%;
  margin: 10px auto;
  border: 1px solid #fff;
}

.copyright {
  font-size: 14px;
  margin-top: 10px;
}
  /*# sourceMappingURL=style.css.map */