/* iot.css */

/* index.css */

/* Update Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 5%;
  flex-wrap: wrap;
}
html {
  scroll-behavior: smooth;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fff;
}

.Title {
  color: black;
  font-size: 24px;
  font-weight: 500;
  max-width: 200px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #0055a5;
  color: #ffcc00;
  border-radius: 4px;
} 
  main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
  }
  
  h1 {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
  }
  
  .service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-block {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  .service-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .service-block h2 {
    font-size: 20px;
    color: #003366;
    margin: 10px 0;
  }
  
  .service-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }

  .carousel img {
    height: 300px;
    object-fit: cover;
  }
  
  .carousel-caption h5 {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
  }
  
    footer {
      background-color: #003366;
      color: #fff;
      padding: 30px 20px;
      font-size: 14px;
    }
    
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    .footer-section {
      flex: 1 1 200px;
      margin: 10px;
    }
    
    .footer-section h4 {
      margin-bottom: 10px;
      color: #00bcd4;
    }
    
    .footer-section ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-section ul li a {
      color: #fff;
      text-decoration: none;
    }
    
    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      border-top: 1px solid #444;
      padding-top: 10px;
    }