/*----------------------------------------------------*/
/*----------------------------------------------------*/
/*----------------------------------------*/
/*   HEADER CSS
/*----------------------------------------*/

header {
  position: fixed;
  width: 100%;
  top: 0;
  /* background-color: #f4cbff; */
  height: 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1000; /* Adjust the z-index as needed */
}
  
  .header-logo {
    width: 250px;
    height: 150px;
    background-image: url("../img/logo/logo-2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .header-language {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .header-language .dropdown-toggle {
    cursor: pointer;
    border: 1px solid transparent;
    padding: 8px 16px;
    background-color: transparent;
    display: flex;
    align-items: center;
  }
  
  .header-language .dropdown-toggle img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  
  .header-language .dropdown-toggle span {
    font-size: 18px;
    color: #000000;
  }
  
  .header-language .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .header-language .dropdown-menu li {
    padding: 12px 16px;
    border-bottom: 1px solid #1f2749;
    cursor: pointer;
  }
  
  .header-language .dropdown-menu li:hover {
    background-color: #eee;
    border-bottom-color: #fff;
  }

  .banner-saas-area {
    position: relative; /* Add this to establish a positioning context */
    height: 100vh !important;
  }

  .banner-saas-area .shape_video {
    position: absolute; /* Add this to position the video element */
    top: 0;
    left: 0;
    z-index: -1;
  }

  .banner-saas-area .banner-content,
  .banner-saas-area .floated-widget {
    position: relative; /* Add this to ensure z-index works */
    z-index: 1; /* Add this to place the content above the video */
  }

  .banner-saas-area .banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the banner content occupies the full height */
  }
  
  .banner-saas-area .banner-content h1 {
    font-size: 60px !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important;
    color: antiquewhite !important;
    margin-bottom: 10px !important; /* Reduce the margin to center content better */
  }
  
  .banner-saas-area .banner-content p {
    font-size: 28px !important;
  }

  .saas-banner-content h1{
    color: antiquewhite !important;
    font-weight: 500 !important;
    font-size: 50px !important;
    line-height: 80px !important;
  }

  .card-menu {
    transition: background-color 0.3s; /* Add a smooth transition effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 35px;
    background: whitesmoke;
    border-radius: 16px;
  }

  .card-menu:hover {
      background-color: #8dc4ff; /* Change to blue on hover */
      color: #fff; /* Change text color on hover */
  }

  .card-menu:hover .card-menu-title {
      color: #fff; /* Change card-menu title color on hover */
  }

  /* Specify the background colors that should trigger the hover effect */
  .card-menu:not(.bg-white):hover {
      background-color: #8dc4ff; /* Change to blue on hover */
      color: #fff; /* Change text color on hover */
  }

  .help-ad-area .offers {
      transform: translate(-65px, -65px) !important;
  }

  .underline-shape::after {
    background-color: #d2bddf !important;
  }

  .saas-features-area {
      position: relative;
  }

  .saas-subscribe-area {
    background: #8e8afb8a !important;
  }

  .saas-features-img {
    position: relative;
    z-index: 3;
  }
    
  .footer.footer-2 {
    background-color: #012651 !important;
  }

  .shape_img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; /* Adjust the width to cover the container */
      height: 100%; /* Adjust the height to cover the container */
      z-index: 1; /* Position the image behind the content */
      opacity: 0.5; /* Adjust the opacity as desired */
  }
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 2; /* Adjust the value as needed */
    background: linear-gradient(90deg, white 35%, #672d7f 30%); /* Red on the left, white on the right */
    display: flex; /* Use flex layout to align content */
  }

.logo-container {
  position: absolute;
  top: 0%;
  left: 16%; /* Center the logo horizontally */
  transform: translate(-50%); /* Center the logo horizontally */
  padding-left: 20px; /* Add some left padding for spacing */
}

.logo-container img {
  max-width: 300px; /* Adjust the logo size */
  display: block;
  margin: 0 auto; /* Center the logo horizontally */
}

.banner-area-2 {
  background-image: url(../img/banner/bg-img-2.png), linear-gradient(to right, #c4e7ff, #fff0f0);}

.contact {
  position: absolute;
  bottom: 10px;
  right: 100px;
}

.contact a {
  margin-right: 10px; /* Add spacing between social media icons */
  font-size: 18px;
}

.container-fluid {
  padding: 0;
}

/* Styles for the sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
  display: flex; /* Use flex layout to align menu items */
  flex-direction: column; /* Arrange items vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
}

.sidebar a {
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 20px; /* Set the font size to 22px */
  transition: color 0.3s; /* Add a smooth transition for the color change */
  text-transform: uppercase; /* Set text to uppercase */
  font-weight: 400;
}

/* Change the color to blue when hovered */
.sidebar a:hover {
  color: rgb(206, 47, 47);
}

/* Styles for the logo at the top of the sidebar */
.sidebar-logo {
  margin-bottom: 20px; /* Adjust the margin for spacing */
  text-align: center;
}

.sidebar-logo img {
  max-width: 250px; /* Set the maximum width for the logo */
}


/* Styles for the close button */
.closebtn {
  position: absolute;
  bottom: 10px; /* Adjust the position to place it at the bottom */
  left: 10px;
  font-size: 36px;
  cursor: pointer;
}

/* Styles for the menu button */
.menu-button {
  position: fixed;
  top: 50%;
  left: 0;
  height: 100vh; /* Set height to 100% of the viewport height */
  width: 50px; /* You can adjust the width as needed */
  transform: translateY(-50%);
  background-color: #ffffff;
  padding: 8px 10px;
  cursor: pointer;
  z-index: 3;
  display: flex; /* Use flex layout for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

/* Styles for the sideways text inside the menu button */
.sideways-text {
  writing-mode: vertical-lr; /* Set text orientation to vertical */
  text-orientation: sideways; /* Text orientation upright */
  transform: rotate(0deg); /* Rotate the text 90 degrees counterclockwise */
  transform-origin: center; /* Set the rotation origin to the center */
  color: #000;
  text-align: center;
}

@media (min-width: 313px) and (max-width: 576px) {
}

@media (min-width: 576px) and (max-width: 767px) {
}

@media (min-width: 768px) and (max-width: 991px) {
}


@media (min-width: 992px) and (max-width: 1199px) {
}

@media (min-width: 1200px) {
}
