/* Overall Header */
.header {
    background-color: #102841; /* Dark blue background */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Container styling */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo and Help Center text */
  .logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
  }
  
  .logo p {
    font-size: 16px;
    color: #b0c4de; /* Light color for 'Help Center' text */
    margin: 0;
  }
  
  /* Search Bar */
  .search-bar input {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 4px;
  }
  
  /* Navigation Links and Language Selection */
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .nav-links a {
    color: #ffffff;
    margin-right: 20px;
    text-decoration: none;
    font-size: 16px;
  }
  
  .nav-links select {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
  }

  





  .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumb-item a {
    color: #6c757d; /* Gray for inactive links */
    text-decoration: none;
  }
  
  .breadcrumb-item.active {
    color: #333; /* Darker color for the active breadcrumb */
    font-weight: bold;
  }

  

  body {
    font-family: Arial, sans-serif;
}

.camera-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    gap: 20px;
}

.camera-section i {
    font-size: 30px;
    color: #6A5ACD; /* Purple color */
}

.camera-section h1 {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

.camera-section p {
    font-size: 0.9em;
    color: gray;
    margin-top: 5px;
}






.cam-installation-link {
    text-decoration: none;
    color: inherit; /* Ensures the text color is not affected */
}

.cam-installation-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: box-shadow 0.3s ease;
}

.cam-installation-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cam-installation-content {
    display: flex;
    flex-direction: column;
}

.cam-installation-content h2 {
    font-size: 1.5em;
    margin: 0;
    font-weight: bold;
}

.cam-installation-content hr {
    width: 100%;
    border: 0.5px solid #ddd;
    margin: 10px 0;
}

.cam-installation-content p {
    margin: 0;
    color: gray;
    font-size: 1em;
}

.cam-installation-icon {
    font-size: 1.2em;
    color: #6A5ACD; /* Purple color for arrow */
}

.cam-installation-icon i {
    transition: color 0.3s ease;
}

.cam-installation-card:hover .cam-installation-icon i {
    color: #000; /* Arrow color changes on hover */
}





.footer {
    background-color: #343a40; /* Dark background similar to your screenshot */
    padding: 20px 0; /* Vertical padding for spacing */
    text-align: center;
  }
  
  .footer-logo img {
    max-width: 150px; /* Adjust the logo size to fit the design */
    height: auto;
  }
  
  .container {
    max-width: 1140px; /* Keep the footer content aligned with the main container */
    margin: 0 auto;
  }
  