/* Custom Styles for the page */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Logo styling */
.logo img {
    max-height: 40px;
}

/* Header customization */
/* #152B6F */
header {
    background-color: #152B6F;
}

.header-text {
    margin-left: 10px; /* Space between logo and text */
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* Form Field Labels */
label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
}

/* Footer customization */
footer {
    background-color: #343a40;
    color: #fff;
}

bg-blue {
	color: #152B6F;
	
}

.heading-5xl {
  font-family: 'Neue Haas Grotesk Text Pro', sans-serif;
  font-weight: 700;
  font-size: text-5xl; /* 3rem-size  Adjust this value if 'text-5xl' is different in your setup */
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0; /* Adjust as needed */
}

.body-txt-sm {
    font-family: 'Neue Haas Grotesk Text Pro', sans-serif;
    font-weight: 400;
    font-size: text-sm; /* Assuming text-sm translates to 1rem */
    line-height: 1.4;
    letter-spacing: normal; /* Assuming no specific letter-spacing */
    margin-bottom: 0.5rem; /* Assuming spacing-xs translates to 0.5rem */
}
.light-border {
    border: 1px solid rgba(0, 0, 0, 0.1); /* Light gray border */
    padding: 20px; /* Optional: adds space inside the div */
}

.links-container {
    display: flex;
    flex-direction: column;  /* Stack the links vertically */
    gap: 10px;               /* Space between the links */
    text-align: center;      /* Center the text within each link */
}

.links-container a {
	font-family: 'Neue Haas Grotesk Text Pro', sans-serif;
    text-decoration: none;   /* Remove underline */
    color: #152B6F;          /* Link color  #007BFF;*/
    font-size: base;         /* Font size 18px small */
}

.links-container a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Add spacing between sections */
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.nav-link {
    color: #fff !important;
}

/* Small label text */
.small {
    font-size: 0.85rem;
}



/* extra Small label text */
.x-small {
    font-size: 0.75rem;
}

 footer {
      background-color: #152B6F; /* Dark blue background */
      padding: 40px;
      position: relative;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    /* Menu Column Styles */
    .menu {
      padding-left: 4rem; /* 4rem padding left */
	  padding-right: 4rem; 
      /*width: 10rem; */
      min-width: 150px;
      color: white;
    }

    .menu h4 {
      margin-bottom: 15px;
      font-size: 18px;
      color: white;
    }

    .menu ul {
      list-style: none;
      padding: 0;
    }

    .menu ul li {
      margin-bottom: 10px;
    }

    .menu ul li a {
      color: #ccc;
      text-decoration: none;
    }

    .menu ul li a:hover {
      text-decoration: underline;
    }

    /* Chat Logo */
    .chat-logo {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      color: white;
      cursor: pointer;
    }

    .chat-logo:hover {
      color: #f39c12;
    }

    /* Footer Bottom Section */
    .footer-bottom {
      background-color: #000; /* Black background for bottom */
      color: white;
      padding: 4rem 4rem 20px; /* Padding from top, right, bottom */
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .footer-bottom .links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom .links a {
      color: #ccc;
      text-decoration: none;
    }

    .footer-bottom .links a:hover {
      text-decoration: underline;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: #ccc;
      font-size: 24px;
    }

    .social-icons a:hover {
      color: #f39c12;
    }

    .copyright {
      font-size: 14px;
      color: #ccc;
      text-align: center;
      width: 100%;
      margin-top: 20px;
    }

    /* Style for the submit button */
	.submit-button {
		background-color: #152B6F; /* Button background color */
		color: white; /* Text color */
		padding: 10px 20px; /* Padding around the text */
		border: none; /* Remove border */
		border-radius: 5px; /* Rounded corners */
		font-size: 16px; /* Font size */
		cursor: pointer; /* Cursor change on hover */
		transition: background-color 0.3s; /* Smooth transition for hover effect */
	}

    /* Change background color on hover */
    .submit-button:hover {
        background-color: #1a3e7a; /* Slightly lighter shade on hover */
    }