@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Bootstrap and custom CSS imports are already included */

/* Global CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
  }
  header {
    border-bottom: 1px solid rgba(255,255,255,0.5);
  }
  body {
    background-color: rgba(13, 12, 41, 255);
    height: 100%;
  }
  ::selection {
    background-color: orange;
    color: #fff;
  }
  html {
    height: 100%;
    scroll-behavior: smooth;
  }
  @media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: center; /* Center text when navbar is collapsed */
    }
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .nav-link, .dropdown-menu {
        width: 100%; /* Ensure links take up full width */
        text-align: center; /* Center text */
    }
}
  h1 {
    font-weight: 500;
  }
  /* Video Background */
  #home {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Full viewport height */
  }
  
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensure the video is behind other content */
  }
  
  .bg-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevent video from intercepting mouse events */
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: -1; /* Ensure the overlay is behind other content */
  }
  
  /* Navbar */
  .navbar {
    background-color: transparent; /* Transparent background */
  }
  
  .navbar-nav {
    flex: 1;
    justify-content: center;
  }
  
  .navbar-right {
    margin-left: auto;
  }
  
  /* Navbar Links */
  .navbar-nav .nav-link::after {
    content: '';
    display: block;
    margin: auto;
    width: 0%;
    height: 2px;
    background-color: red; /* Adjust color as needed */
    transition: 0.6s;
    opacity: 0;
  }
  
  .navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
  }
  
  /* Functional Buttons */
  .funcbtn {
    background: transparent;
    color: #fff;
    text-decoration: none;
  }
  
  /* Centered Content */
  .centered-content {
    margin-top: 15%; /* Adjust margin as needed */
  }
  @media(max-width: 768px) {
    .centered-content {
      margin-top: 50%;
    }
  }
  /* Items */
  .item {
    background: transparent; /* Transparent background */
    border: 2px solid rgba(62, 117, 212, 1); /* Border color */
    border-radius: 20px;
    margin-top: 30px; /* Adjust margin as needed */
  }
  .item1 {
    background-color: #080c1c;
  }
  
  /* Text Color */
  .text-white {
    color: #fff;
  }
  
  /* Button Styling */
  .discover {
    background-color: rgba(62, 117, 212, 1); /* Button background color */
    padding: 10px 30px; /* Adjust padding as needed */
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
  }
.col-right {
    margin-top: 8%;
}
.products {
    background-color: #fff;
    padding: 10px 30px; /* Adjust padding as needed */
    border-radius: 20px;
    color: rgba(62, 117, 212, 1);
    text-decoration: none;
    display: inline-block;
    margin-top: 1%;
}

.count {
    color: #fff;
    font-size: 6rem;
    font-weight: 600;
}
.left-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.services-wrap {
  margin-top: 8%;
}
.test {
  background-color: #080c1c;
  border-radius: 20px;
}
.test-wrap {
  margin-top: 7%;
}
.contact-div {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(homeimgs/contactcover.jpg);
  border-radius: 40px;
  margin-top: 10%;
  margin-bottom: 5%;
  border: 1px solid rgba(62, 117, 212, 1);;
  background-position: center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer {
  background-color: #000;
}
.blue-text {
  color: rgba(62, 117, 212, 1);
}
.socials {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.policies {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; /* Optional: allows items to wrap to the next line on small screens */
  padding: 10px 0; /* Adjust padding as needed */
  
}

.policies a {
  margin: 0 10px; /* Adjust margin as needed */
  color: rgba(255, 255, 255 , 0.6);
  text-decoration: none;
}

.policies p {
  margin: 0;
  color: rgba(255, 255, 255 , 0.6);
}



.navbar .nav-item .dropdown-menu {
  display: none;
  background-color: black;
  transition: all 1s ease;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu .dropdown-item {
  color: white;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #444;
}




