html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
  /* font-family: Arial, sans-serif; */
  display: flex;
  flex-direction: column;
}

h5 {
  margin-bottom: 0;
}

.content-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.content {
  flex: 1;
  /* padding: 20px; */
}

.footer {
  background-color: #04395e;
  color: white;
  padding: 1rem 0;
  text-align: center;
  bottom: 0;
}

.analytics-panel {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 300px;
}

/* Copied from home.html */
.container {
  width: auto;
  /* Changed to auto for full width within viewport constraints */
  max-width: 1200px;
  /* Ensuring it doesn't stretch too far on larger screens */
  margin: auto;
  /* Centering the container */
  /* display: flex; */
  /* justify-content: center; */
  /* flex-direction: row; */
  /* Changed to row for side-by-side layout */
  flex-grow: 1;
  /* Makes this section expand to fill available space */
  padding: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #004494;
}

.footer {
  background-color: #04395e;
  color: white;
  padding: 2px 0;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

.navbar {
  /* background-color: #04395e; */
  padding: 0.5rem 1rem;
}

.navbar-brand {
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transition: all 0.3s ease;
}

.nav-link {
  color: white;
}

/* sidebar.css for overview, solutions, and support */

.content-container {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 20px;
}

.content-container h1,
.content-container h2,
.content-container h3 {
  color: #333;
  margin-bottom: 15px;
}

.content-container p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
}

.page-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.solution {
  margin-bottom: 20px;
}

.solution h3 {
  font-size: 1.5em;
  color: #333;
  margin-top: 20px;
}

.solution-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 8px;
}

/* sidebar.css for overview, solutions, and support */

/* General Page Styling */
body {
  /* font-family: Arial, sans-serif; */
  color: #333;
  background-color: #f4f7f9;
  margin: 0;
  padding: 0;
}

/* Content Container Styling */
.content-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Headings Styling */
.content-container h1 {
  font-size: 2.5em;
  color: #004e92;
  text-align: center;
  margin-bottom: 20px;
}

.content-container h2 {
  font-size: 1.8em;
  color: #333333;
  margin-top: 25px;
  text-align: center;
}

.content-container h3 {
  font-size: 1.4em;
  color: #666666;
  margin-top: 20px;
  text-align: left;
}

/* Paragraph and List Styling */
.content-container p,
.content-container ul {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555555;
  margin: 15px 0;
}

.content-container ul {
  padding-left: 20px;
  list-style-type: disc;
}

.content-container ul li {
  margin: 5px 0;
}

/* Page Image Styling */
.page-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Solution Section Styling */
.solution {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fb;
  border-left: 4px solid #004e92;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}

.solution h3 {
  font-size: 1.6em;
  color: #004e92;
}

.solution-image {
  width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 8px;
}

/* Button Styling */
.content-container a.btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #004e92;
  color: #ffffff;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.content-container a.btn:hover {
  background-color: #0077cc;
}

/* Support Page Contact Section Styling */
.support-contact-form {
  margin-top: 30px;
  padding: 20px;
  background-color: #f0f5ff;
  border: 1px solid #cfd9e7;
  border-radius: 8px;
}

.support-contact-form h3 {
  font-size: 1.5em;
  color: #333333;
}

.support-contact-form p {
  font-size: 1.1em;
  color: #555555;
}

.support-contact-form input,
.support-contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #cfd9e7;
  border-radius: 5px;
  font-size: 1em;
}

.support-contact-form input[type="submit"] {
  background-color: #004e92;
  color: #ffffff;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.support-contact-form input[type="submit"]:hover {
  background-color: #0077cc;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .content-container {
    padding: 20px;
  }

  .content-container h1 {
    font-size: 2em;
  }

  .content-container h2 {
    font-size: 1.6em;
  }

  .content-container p,
  .content-container ul {
    font-size: 1em;
  }

  /* Contact Us Page Styling */
  .contact-details {
    margin: 20px 0;
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
  }

  .contact-form {
    background-color: #f4f7f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
  }

  .contact-form label {
    font-weight: bold;
    margin-top: 10px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="submit"],
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
  }

  .contact-form input[type="submit"] {
    background-color: #04395e;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
  }

  .contact-form input[type="submit"]:hover {
    background-color: #0077cc;
  }

  .faq-list {
    list-style-type: none;
    padding: 0;
  }

  .faq-list li {
    margin: 15px 0;
  }

  .faq-list strong {
    color: #04395e;
  }

  /* Sidebar .css for contact submit */

  /* Contact Us Form Styling */
  .content-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  }

  .contact-form {
    background-color: #f4f7f9;
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
  }

  .contact-form label {
    display: block;
    font-weight: bold;
    color: #333333;
    margin-top: 10px;
    font-size: 1em;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="submit"],
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }

  .contact-form input[type="text"]:focus,
  .contact-form input[type="email"]:focus,
  .contact-form textarea:focus {
    border-color: #04395e;
    outline: none;
  }

  .contact-form textarea {
    resize: vertical;
  }

  .contact-form input[type="submit"] {
    background-color: #04395e;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
  }

  .contact-form input[type="submit"]:hover {
    background-color: #0077cc;
  }

  /* Success and Error Alert Messages */
  .alert {
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 1em;
  }

  .alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
  }

  .alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
  }
}

/* Disabled link */
.disabled-link {
  background-color: gray !important; 
  color: white !important;
  border-color: gray !important;
  cursor: not-allowed !important;
}