body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
  }
  
  
  
  
  
  
  
  
  
  
  /* Section Styling */
  .video-background-section {
    position: relative;
    width: 100%;
    height: 300px; /* Full viewport height */
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000; /* Fallback background color */
  }
  
  /* Video Styling */
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section while maintaining aspect ratio */
    z-index: 1;
  }
  
  /* Text Overlay Styling */
  .overlay-content {
    position: relative;
    z-index: 2; /* Places content above the video */
    text-align: center;
    color: #fff;
  }
  
  .overlay-content h1 {
    font-size: 3rem; /* Adjust as needed */
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .overlay-content p {
    font-size: 1rem; /* Adjust as needed */
    font-weight: 300;
    letter-spacing: 1px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .video-background-section {
      margin-top: 96px;
    }

    .overlay-content h1 {
      font-size: 2rem;
    }
  
    .overlay-content p {
      font-size: 0.9rem;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  #solutions-navigation .nav .nav-link {
    display: block;
    padding: 15px 15px 15px 25px;
    margin-bottom: 10px;
    border: 1.5px solid;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600; /* Corrected font-weight to numeric value */
    font-size: 16px;
    color: #333;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  #solutions-navigation .nav .nav-link:hover,
  #solutions-navigation .nav-link.active {
    border: 2px solid #FF8405;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #FF8405;
  }
  
  #solutions-navigation .nav a {
    text-decoration: none; /* Ensures all links maintain no underline */
  }
  
  .solution-content {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .solution-content.active {
    display: block;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .solutions-nav .nav-link {
        width: 100%; /* Full width for smaller screens */
        font-size: 14px; /* Slightly smaller font size */
        padding: 10px; /* Reduced padding */
        margin-bottom: 8px; /* Adjust margin */
    }
  
    .solutions-nav {
        margin: 0 auto; /* Center align the navigation on mobile */
    }
  }
  
  /* Additional Mobile Optimization */
  @media (max-width: 576px) {
    .solutions-nav .nav-link {
        font-size: 13px; /* Further reduce font size for very small screens */
        padding: 8px; /* Adjust padding */
    }
  }
  
  
  
  
  
  
  
  /* Description Section */
  .description-box img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .description-box h5 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
  }
  
  .description-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
  }
  
  /* Bullet Points List */
  .cyber-secure-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .cyber-secure-list li {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
  }
  
  .cyber-secure-list li:hover {
    border: 1.5px solid #FF8405;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .cyber-secure-list li img.list-icon {
    display: inline-block;
    width: 24px; /* Match the size shown in the provided image */
    height: 24px; /* Keep the aspect ratio consistent */
    margin-right: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .description-box {
      text-align: center;
    }
  
    .cyber-secure-list li {
      justify-content: center;
    }
  }
  
  
  
  
  
  /* Section Styling */
  .information-section {
    padding: 50px 20px;
    background-color: #ffffff;
  }
  
  /* Title Styling */
  .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  /* Description Styling */
  .section-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  /* Image Container Styling */
  .image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  
  /* Restrict Image Size */
  .restricted-img {
    width: 400px; /* Set a fixed width for consistency */
    height: 400px; /* Set a fixed height for consistency */
    object-fit: cover; /* Ensure images are cropped to fill the dimensions */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Caption Styling */
  .image-caption {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-top: 10px; /* Space between image and text */
    text-align: center;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .restricted-img {
        width: 100%; /* Scale down for smaller screens */
        height: auto; /* Maintain aspect ratio */
    }
    .image-caption {
        font-size: 14px; /* Smaller font size for mobile */
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  .highlighted-box {
    background-color: #f8f9fc; /* Light grey background */
    border-left: 4px solid #e75c05; /* Black border on the left */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .highlighted-text {
    font-size: 16px; /* Adjust font size */
    line-height: 1.8; /* Improve readability */
    color: #555; /* Neutral grey text color */
    margin: 0; /* Remove margin */
  }
  
  .regular-text {
    font-size: 16px; /* Regular paragraph font size */
    line-height: 1.8; /* Improve readability */
    color: #740d0d; /* Neutral grey text color */
    margin-bottom: 1rem; /* Space between paragraphs */
  }
  
  
  
  /* Request A Quote Section */
  .request-quote-box {
    background: #f8f9fc; /* Light grey background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .request-quote-box h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Input and Select Styling */
  .request-quote-box .form-control,
  .request-quote-box .form-select {
    border: 1.5px solid #ddd;
    border-radius: 40px;
    font-size: 16px;
    padding: 10px 15px;
    background: #f8f9fa;
    color: #333;
  }
  
  .request-quote-box .form-control:focus,
  .request-quote-box .form-select:focus {
    border-color: #FF8405;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    outline: none;
  }
  
  /* Button Styling */
  .request-quote-box .gradient-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 100%);
    border: none;
    padding: 12px;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .request-quote-box .gradient-btn:hover {
    background: linear-gradient(135deg, #F9348D 0%, #FF8405 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .request-quote-box .gradient-btn span {
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .request-quote-box h4 {
      font-size: 18px;
    }
  
    .request-quote-box .form-control,
    .request-quote-box .form-select {
      font-size: 14px;
    }
  
    .request-quote-box .gradient-btn {
      font-size: 14px;
    }
  }

  /* Dark mode visibility fixes for cybersecurity training and awareness page */
  body.dark-mode {
    background-color: #000;
    color: #f5f5f5;
  }

  body.dark-mode #solutions-navigation,
  body.dark-mode .information-section,
  body.dark-mode .highlighted-text-section {
    background-color: #000;
  }

  body.dark-mode #solutions-navigation .nav .nav-link {
    color: #f5f5f5;
    border-color: #4a4a4a;
    background-color: rgba(255, 255, 255, 0.04);
  }

  body.dark-mode #solutions-navigation .nav .nav-link:hover,
  body.dark-mode #solutions-navigation .nav-link.active {
    color: #ff9c3a;
    border-color: #ff8405;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  }

  body.dark-mode .solution-content,
  body.dark-mode .request-quote-box,
  body.dark-mode .information-section,
  body.dark-mode .highlighted-box {
    background-color: #121212;
    color: #f5f5f5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  }

  body.dark-mode .description-box h5,
  body.dark-mode .section-title,
  body.dark-mode .request-quote-box h4,
  body.dark-mode .image-caption,
  body.dark-mode .section-paragraph,
  body.dark-mode .highlighted-text,
  body.dark-mode .regular-text,
  body.dark-mode .description-box p,
  body.dark-mode .section-description,
  body.dark-mode #solutions-navigation p,
  body.dark-mode #solutions-navigation li,
  body.dark-mode #solutions-navigation span {
    color: #f5f5f5;
  }

  body.dark-mode .cyber-secure-list li {
    background-color: #181818;
    border-color: #2f2f2f;
    color: #f5f5f5;
  }

  body.dark-mode .cyber-secure-list li:hover {
    background-color: #1f1f1f;
    border-color: #ff8405;
  }

  body.dark-mode .request-quote-box .form-control,
  body.dark-mode .request-quote-box .form-select {
    background: #1d1d1d;
    border-color: #3b3b3b;
    color: #f5f5f5;
  }

  body.dark-mode .request-quote-box .form-control::placeholder {
    color: #bfbfbf;
  }

  body.dark-mode .request-quote-box .form-control:focus,
  body.dark-mode .request-quote-box .form-select:focus {
    border-color: #ff8405;
    box-shadow: 0 0 0 0.2rem rgba(255, 132, 5, 0.25);
  }
