body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;

  
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2155c4;
    padding: 10px 20px;
    color: white;
  }

  .navbar-left {
    display: flex;
    align-items: center;
  }

  .navbar-left img {
    height: 50px;
    margin-right: 15px;
  }

  .navbar-left h1 {
    font-size: 1.5rem;
    margin: 0;
  }

  .navbar-right a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
  }

  .navbar-right a:hover {
    text-decoration: underline;
  }
header, section, footer {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

header {
  background-color: #37579c;
  color: white;
  text-align: center;
}
h1, h2 {
  margin-bottom: 10px;
}
.features, .process, .industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature, .step, .industry {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
footer {
  background-color: #222;
  color: white;
  text-align: center;
}
a {
  color: #4caf50;
}
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
  }
  
  .slide {
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  /* Buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    transform: translateY(-50%);
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Dots */
  .dots {
    text-align: center;
    padding: 10px 0;
  }
  
  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }

  /* Hamburger Icon */
.nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
  }
  
  /* Responsive Behavior */
  @media (max-width: 1300px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-menu {
      flex-direction: column;
      width: 100%;
      display: none;
      list-style: none;
      background-color: #34495e;
      position: absolute;
      top: 60px;
      left: 0;
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .nav-menu li {
      padding: 10px;
      border-top: 1px solid #2155c4;
    }
  }