body {
  margin: 0;
}

.navbar {
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fafafa;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

/* Navbar menu */
.navbar__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

/* Navbar logo */
.main-logo,
.main-logo2 {
  width: 100px;
  /* Adjust as needed */
  height: auto;
}

/* Navbar toggle button */
.toggle-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}

/* Navbar menu items */
.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-left: 40px;
  display: flex;
}

.menu__item {
  margin-right: 20px;
}

.menu__link {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu__link:hover {
  color: #007bff;
}

.dropdown__menu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.dropdown__menu--right {
  right: 0;
}

.dropdown__menu li {
  white-space: nowrap;
}

.dropdown__toggle {
  position: relative;
}

.dropdown__toggle::after {
  margin-left: 5px;
}

.dropdown:hover .dropdown__menu {
  display: block;
}

.dropdown__item {
  padding: 10px;
}

.dropdown__item:hover {
  background-color: #f0f0f0;
}


.menu a {
  color: #333;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
}



.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.menu__item {
  display: inline-block;
  position: relative;
}

.menu__link {
  display: block;
  padding: 10px 10px;
  color: #fff;
  /* Navbar link color */
  text-decoration: none;
  margin-left: 20px;
  margin-top: 5px;
  transition: all 0.3s ease-in-out;
}

.main-logo img {
  width: 200px;
  padding-right: 50px;

}

.menu__link:hover {
  color: #af0101;
  transform: scale(1.1);
}

/* Hide dropdown menu by default */
.dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  /* Dropdown background color */
  border-top: 2px solid #fff;
  /* Dropdown border */
  padding: 10px;

  z-index: 1;

  /* Ensure dropdown is above other elements */
  a {
    font-size: 15px;
  }
}

/* Show dropdown menu on hover */
.menu__item:hover .dropdown__menu {
  display: block;
}

/* Show nested dropdown menu on hover */
.dropdown__menu li:hover .dropdown__menu--right {
  display: block;
}

/* Style for dropdown items */
.dropdown__menu li {
  list-style: none;
  position: relative;
}

.main-logo2 img {
  display: none;

}

/* Style for nested dropdown items */
.dropdown__menu--right {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background-color: #ffffff;
  /* Nested dropdown background color */
  border-top: 2px solid #fff;
  /* Nested dropdown border */
  padding: 5px 10px;
  z-index: 1;

  /* Ensure nested dropdown is above other elements */
  a {
    font-size: 15px;
  }

  transition: all 0.9s ease-in-out;
}

/* Style for links */
.dropdown__item {
  display: block;
  text-decoration: none;
  color: #fff;
  /* Link color */
  padding: 5px 10px;
}

/* Hover effect for links */
.dropdown__item:hover {
  color: #b20603;
  transform: scale(1.01);
  /* Hover background color */
}

/* Mobile styles */
.menu__toggle {
  display: none;
  /* Button background color */
  /* Button text color */
  border: none;
  padding: 10px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;

  }

  .menu__item {
    width: 100%;

  }

  .menu__toggle {
    display: block;
  }

  .menu.active {
    display: flex;

  }

  .navbar {
    position: static;
  }

  .navbar__menu {
    margin: 0;
    /*padding: 0;*/
    border-radius: 0;
  }

  .main-logo img {
    display: none;
  }

  .main-logo2 img {
    display: block;
    width: 100px;

  }

  .navbar button {
    margin-left: 10px;
    margin-bottom: 10px;
    color: #a32d2d;
    background-color: #f9f8f8;
    border: none;
  }

  .dropdown__menu,
  .dropdown__menu--right {
    position: relative;
    left: 0;
    width: 100%;
  }

}
.navbar__menu-toggle {
  display: none;
}

@media only screen and (min-width: 769px) {
  .toggle-btn {
    display: none;

  }

  .menu {
    display: block;
  }
}

.footer-column {

  h5 {
    color: #edf1f5;
    font-size: 20px;
    margin: 0;
    margin-top: 5px;

  }

  p {
    color: #ffffff;
  }

  input {
    width: 90%;
    height: 20px;
  }

  button {
    margin-top: 5px;
    padding: 5px 10px;

  }
}





footer {
  background: #D31027;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #000000, #50020b);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #000000, #6e0511);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  width: 100%;
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}

footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}

.content .top .media-icons {
  display: flex;
}

.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}

footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}

.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}

.content .link-boxes .box li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.content .link-boxes .input-box {
  margin-right: 55px;
}

.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;

  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
  color: #AFAFB6;
  font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
  background: #A40303;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
  opacity: 1;
}

footer .bottom-details {
  width: 100%;
  background: #D31027;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #000000, #50020b);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #000000, #50020b);/
}

footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }

  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  footer {
    position: relative;
  }

  .content .top .logo-details {
    font-size: 26px;
  }

  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 60%;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }

  footer .content .top {
    flex-direction: column;
  }

  .content .top .media-icons {
    margin-top: 16px;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 100%;
  }
}


.partner-container h4 {
  font-family: "Saira", sans-serif;
  font-size: 40px;
  text-align: center;

}

/* Slider */
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.partner-container {
  text-align: center;
  padding: 50px;

}

.partner-container h4 {
  font-family: "Saira", sans-serif;
  font-size: 40px;
  margin-bottom: 50px;
  color: #a40303;
  text-shadow: 2px 2px #ccc;
}

/* Slider */
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 60%;
  height: auto;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform .2s;
}

.slick-slide img:hover {
  transform: scale(1.1);
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-prev:before,
.slick-next:before {
  color: #a40303;
  font-size: 30px;
}

.breadcrumbs-container{
  max-width: 1500px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.breadcrumbs{
  margin-bottom: 50px;
}
.banner-bg{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("https://avoornetworks.com/products/asset/Images/Our Products.jpg");
 height:550px;
}
.banner{
  
    
  
  
  padding: 50px;

  margin-bottom: 10px;

  h1{
      text-align:center;
    background: -webkit-linear-gradient(#cecdbc, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 150px;
  font-family: "Roboto", sans-serif;
   font-size: 80px;
    color: white;
    font-weight: 900;
  }
  
}
@media(max-width:1200px){
  .banner{
    h1{
    font-size: 30px;
  }
  img{
    width: 30%;
    margin-top:   -4%;
    margin-left: 50% ;
   }
  }
}

@media(max-width:768px){
  .banner{
    padding: 10px;
    h1{
    font-size: 30px;
    
  }
 img{
  margin-top: 10px;
  margin-left: 22% ;
  width: 30%;
 }
}
.banner-bg{
  height: 40vh;
}

}
.breadcrumbs-title h4{
  font-size: 40px;
            font-weight: bold;
            background-color: red; /* For browsers that do not support gradients */
            background-image: linear-gradient(to bottom left,#861c21,#e33539);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
          
            margin-top: 30px;
            margin-left: 30px;
          
}
.breadcrumbs-title h2{
  font-size: 40px;
            font-weight: bold;
            background-color: red; /* For browsers that do not support gradients */
            background-image: linear-gradient(to bottom left,#861c21,#e33539);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
          
            margin-top: 30px;
            margin-left: 30px;
          
}
.breadcrumbs-title h1{
  font-size: 40px;
            font-weight: bold;
            background-color: red; /* For browsers that do not support gradients */
            background-image: linear-gradient(to bottom left,#861c21,#e33539);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: "Roboto", sans-serif;
            margin-top: 30px;
            margin-left: 30px;
          
}
.breadcrumbs {
  border: 1px solid #cbd2d9;
  border-radius: 0.3rem;
  display: inline-flex;
  overflow: hidden;
  margin-top: 30px;
  height: 25px;
  margin-left: 30px;
  
}

.breadcrumbs__item {
  background: #fff;
  color: #333;
  outline: none;
  padding: 0.35em 0.35em 0.35em 1.25em;
  position: relative;
  text-decoration: none;
  transition: background 0.2s linear;
  
}

.breadcrumbs__item:hover:after,
.breadcrumbs__item:hover {
  background: #edf1f5;
}

.breadcrumbs__item:focus:after,
.breadcrumbs__item:focus,
.breadcrumbs__item.is-active:focus {
  background: #8e0028;
  color: #fff;
}

.breadcrumbs__item:after,
.breadcrumbs__item:before {
  background: white;
  bottom: 0;
  clip-path: polygon(50% 50%, -50% -50%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  transition: background 0.2s linear;
  width: 1em;
  z-index: 1;
}

.breadcrumbs__item:before {
  background: #cbd2d9;
  margin-left: 1px;
}

.breadcrumbs__item:last-child {
  border-right: none;
  background: #8e0028;
  color:white;
  
}

.breadcrumbs__item.is-active {
  background: #edf1f5;
}
.breadcrumbs a{
  font-size: 12px;
 
  
}
.para-content {
  text-align: justify;
  p{
  padding: 1px 100px;
  font-size: 18px;
 
  line-height: 27px;
  font-family: "Roboto", sans-serif;}
  span{
    color: #a80909;
    font-weight: 500;
  }
}

.cards {
  margin-left: 6%;

  a {
    text-decoration: none;
  }


}

.card-div{
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}

.card {
  position: relative;
  width: 190px;
  height: 254px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  margin-top: 50px;

}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  
  margin: auto;
  width: 220px;
  height: 284px;
  border-radius: 10px;
  background: #D31027;
  background: -webkit-linear-gradient(to right, #EA384D, #D31027);
  background: linear-gradient(to right, #EA384D, #D31027);
  z-index: -10;
  pointer-events: none;
  margin-left: -3px;
 
  
}



.heading {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}

.card h3:not(.heading) {
  font-size: 14px;
}

.card h3:last-child {
  color: #e81cff;
  font-weight: 600;
}








*/ .heading {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}

.card h3:not(.heading) {
  font-size: 14px;
}

.card h3:last-child {
  text-align: center;
  color: #000000;
  font-weight: 500;
  font-size: 15px;
  font-family: "roboto", sans-serif;
}

.card img{
  transition: transform 0.3s ease;
}
.card{
  transition: transform 0.3s ease;
  
}
.card p:hover{
color: #a32d2d;
}
  .card img:hover{
  transform: scale(1.1);
}
.card:hover{

  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

@media(max-width:968px) {
        .card-div{
  display: flex;
  flex-direction: column;
}
  .cards {
    margin: 0;
    margin-left: 10%;
    display: grid;
    grid-template-columns: auto auto auto;

  }
}

@media(max-width:768px) {
    .card-div{
  display: flex;
  flex-direction: column;
}
  .service-card {
    margin-left: 10%;
  }

  .cards {
    margin-left: 30%;
    display: grid;
    grid-template-columns: auto;

  }

  .Network_product {
    h5 {
      font-size: 25px;

    }

    h6 {
      font-size: 15px;
    }
  }
  .para-content {
   
    p{
    padding: 1px 10px;
    font-size: 18px;
    line-height: 27px;
    
    span{
     
    }
  }

}

@media (max-width:500px){
  .service-card {
    margin-left: 10%;
   
  }
}

@media(max-width:500px) {
  .cards {
    margin-left: 23%;


  }
}


