
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    transition: all 0.4s ease;
    z-index: 999;
  }
  
  /* Styles for the home page menu */
  /* Styles for the home page menu */
  .home-menu li a {
    color: #fff;
    /* Red text color */
  }
  
  /* Styles for the about us page menu */
  .all-menu li a {
    color: #000;
    /* Blue text color */
  }
  
  
  /*--------------
  .nav-links li a.active {
    color: #F00; /* Change this to the desired color for the active link *
    font-weight: bold; /* Optionally, you can modify other styles for the active link *
  }
  ------------------*/
  
  nav.sticky {
    padding: 15px 20px;
    background: #f00;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  
  }
  
  nav .nav-content {
    height: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  nav.sticky .logo a {
    color: #fff;
  }
  
  .nav-content .nav-links {
    display: flex;
  }
  
  .nav-content .nav-links li {
    list-style: none;
    margin: 0 8px;
  }
  
  .nav-links {
    padding-top: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    padding: 10px 4px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    text-transform: uppercase;
  
  
  }
  
  .nav-links li a:hover {
    color: #F00;
    text-decoration: underline;
    text-decoration-color: #F00;
    /* Add this line to set the underline color */
    text-decoration-thickness: 2px;
    /* Add this line to set the thickness of the underline */
    text-underline-offset: 8px;
    /* Add this line to adjust the vertical position of the underline */
  }
  
  
  nav.sticky .nav-links li a {
    color: #fff;
    transition: all 0.4s ease;
  }
  
  nav.sticky .nav-links li a:hover {
    color: #0E2431;
  }
  
  /*-----------Sub menu start---------------*/
  .nav-links .submenu {
    display: none;
    position: absolute;
    background-color: #F00;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 10px 0;
    margin-top: 10px;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    text-transform: uppercase;
  }
  
  .nav-links li:hover .submenu {
    display: block;
    color: #000;
  }
  
  .nav-links .submenu li {
    width: 100%;
    text-align: left;
    padding: 8px 20px;
  }
  
  .nav-links .submenu li a {
    color: #fff;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #EAEAEA;
  }
  
  .nav-links .submenu li a:hover {
    color: #fff;
  }
  
  /*----------sub menu end------------------*/
  
  .home {
    height: 100vh;
    width: 100%;
    background: url("../img/home/banner@2x.png") no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  
  .content {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: #fff;
    padding-top: 200px;
  }
  
  .full h1 {
    color: #FFF;
    font-family: Poppins;
    font-size: 3.743rem;
    font-style: normal;
    font-weight: 900;
    line-height: 4.35663rem;
    text-transform: uppercase;
    text-align: center;
  }
  
  .full h1 .about {
    color: #fff;
  }
  
  .full h1 .us {
    color: #f00;
  }
  
  .view-more-btnone {
    display: inline-block;
    padding: 15px 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 0.538px solid #F00;
    color: #FFF;
    font-family: Poppins;
    font-size: 1.3125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    text-align: left;
    margin-top: 20px;
  }
  
  .view-more-btnone:hover {
    background-color: #FF0000;
    color: white;
  }
  
  /* Default styles for laptop/desktop mode */
  
  /* Add the following media query for tablet devices */
  @media (max-width: 769px) {
  
    /* Adjust the navigation padding */
    nav {
      padding: 10px;
    }
  
    /* Modify the logo size */
    nav .nav-content .logo img {
      max-width: 100px;
    }
  
    /* Reduce the font size of the navigation links */
    .nav-links li a {
      font-size: 0.75rem;
    }
  
    /* Reduce the font size of the home section text */
    .home .content .full h1 {
      font-size: 2.5rem;
    }
  
    /* Modify the size of the view more button */
    .view-more-btnone {
      padding: 10px 20px;
      font-size: 1rem;
    }
  
    /* Adjust the position of the home section content */
    .content {
      top: 50%;
      padding-top: 150px;
    }
  }
  
  /* Add the following media query for mobile devices */
  @media (max-width: 480px) {
  
    /* Modify the navigation height and padding */
    nav {
      height: 60px;
      padding: 5px;
    }
  
    /* Modify the logo size */
    nav .nav-content .logo img {
      max-width: 80px;
    }
  
    /* Reduce the font size of the navigation links */
    .nav-links li a {
      font-size: 0.625rem;
    }
  
    /* Reduce the font size of the home section text */
    .home .content .full h1 {
      font-size: 2rem;
      line-height: 2.5rem;
    }
  
    /* Modify the size of the view more button */
    .view-more-btnone {
      padding: 8px 15px;
      font-size: 0.875rem;
    }
  
    /* Adjust the position of the home section content */
    .content {
      top: 50%;
      padding-top: 100px;
    }
  }
  
  

  





/*------------Footer-----------*/
.footer-item {
  display: flex;
  align-items: center;
}

.footer-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.footer-item i {
  margin-right: 10px;
}

.final{
  padding: 20px;
}
.bg-one {
  position: relative;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5px 0;
  /* Add padding to the container for better visibility */
}

.bg-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Adjust the color and opacity as desired */
}

.footer-logo img {
  z-index: 2;
  position: relative;
  padding-top: 5px;
}

.center-line {
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  border-top: 2px solid #fff;
  z-index: 1;
}

.mix {
  padding-top:5px;
  padding-bottom:5px;
}

.pra {
  padding-top: 50px;
}

.pra p {
  color: #FFF;
  font-family: Poppins;
  font-size: 0.925rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}


.social-icons {
  display: flex;
  padding-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #555;
}


.container-maxi {
  display: flex;
  align-items: center;
}

.list-container {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-container li {
  margin-bottom: 15px;
  /* Adjust the spacing between list items */
}


.image {
  width: 20px;
  /* Adjust the width as needed */
  height: 20px;
  /* Adjust the height as needed */
  margin-right: 10px;
  /* Adjust the spacing between image and text */
}

.text {
  color: #FFF;
  font-family: Poppins;
  font-size: 0.925rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}


.bug {
  color: #FFF;
  font-family: Poppins;
  font-size: 0.925rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.footer-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  /* Add a bottom margin to create the desired gap */
}

.footer-text {
  color: #FFF;
  font-family: Poppins;
  font-size: 0.925rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: lowercase;
  margin-left: 10px;
  /* Add a left margin to create the desired gap */
}


.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.left {
  flex: 1;
  text-align: left;
  color: #FFF;
  font-family: Poppins;
  font-size: 0.925rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.9375rem;
}

.right h1 {
  flex: 1;
  text-align: right;
  color: #FFF;
  font-family: Poppins;
  font-size: 0.925rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.9375rem;
  text-decoration: none;
}

.right h1 .about {
  color: #fff;
}

.us a {
  text-decoration: none;
  color: #F00;
}

.footer {
  padding: 50px;
}

/* Styles for mobile and tablet devices */

@media (max-width: 991px) {
  /* Write your CSS rules for mobile and tablet devices here */

  /* Example: Adjust the padding for the footer */
  .footer {
    padding: 20px;
  }

  /* Example: Adjust the font size for the footer text */
  .footer-text {
    font-size: 14px;
  }

  /* Example: Hide the center line */
  .center-line {
    display: none;
  }

  /* Add more CSS rules as needed */
}

.fast{
  padding-left: 150px;
}


@media (max-width: 1023px) {
  .fast{
    padding-left: 10px;
    padding-top: 50px;
  }
}

@media (max-width: 1023px) {
  .footer-content{
    padding-left: 10px;
    padding-top: 20px;
  }
}
