html, body {
    height: 100%;
    overflow:auto;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #2ea6d4;
    /* Typeography */
    font-family: sans-serif;
    font-size: 24px;
    line-height: 2;
}

/* Navbar */
.navbar-brand.fs-4, .navbar-light .navbar-nav .nav-link {
    color: black !important; /* Ensuring override of default Bootstrap styles */
}

.navbar.navbar-expand-lg .navbar-nav .nav-link {
    color: black !important;
}

.navbar-brand {
    color: black !important;
}

.navbar {
    background-color: rgba(46, 166, 212, 0.7); /* Adjusting the background-color syntax */
    backdrop-filter: blur(10px);
}

.navbar-toggler {
    border-color: black; /* If you want the toggler icon to be more visible */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Custom SVG for black toggler icon */
}

.container-fluid {
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 2.0rem; /* Large font size for the title */
    color: #003D5B;
    font-weight: bold;
}

.subtitle {
    font-size: 1.0rem; /* Smaller font size for the subtitle */
    margin-bottom: 1rem; /* Space between subtitle and buttons */
}

.p {
    font-size: 1.0rem;
    color: Black;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: Black; /* Ensures text is white for contrast */
    text-align: center;
}

.MCI_Trademark { 
    color:#777; 
    opacity: 0.6;
    font-size: 0.7rem;
}

/* Call to Action */
.CallToAction {
    font-family: sans-serif;
    font-size: 20px;
    background-color: white;
    line-height: 1.5;
    text-align: center;
    height: 8vh;
    align-content: center;
    width: 100%;
}
.form-control, .form-select {
    background-color: #333;
    border: 1px solid #666;
    color: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: #555;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

::placeholder {
    color: #bbb;
}

.btn-primary {
    background-color: #222;
    border: none;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #0d6efd;
    color: #fff;
}

/* Landing Page Content Section */
.products-section h1, .opportunities h1{
    padding: 4vw;
}

.products-section p, .opportunities p{
    padding-left: 4vw;
    padding-right: 2vw;
    padding-bottom: 0;
    margin-bottom: 0;
}

.products-section .col-md-6, .opportunities .col-md-6{
    padding-right: 0;
    padding-left: 0;
}
.products-section .img{
    width: 50%;
}
/* Footer */
.footer-container {
    padding: 0;
    margin: 0;
    line-height: 1.2vh;
    font-size: .7rem;
}

/* Cover */
.text-wrapper {
    padding: 20px; /* Adds padding for better spacing */
    background-color: rgba(255, 255, 255, 0.8); /* Light background for readability */
    border-radius: 8px; /* Softens the edges of the text background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-left: 3vw;
    margin-right: 3vw;
}

.text-wrapper h2 {
    font-size: 1.75rem; /* Larger text for heading */
    color: #003D5B; /* Theme color for text, adjust as needed */
    margin-bottom: 20px; /* Space below the heading */
}

.text-wrapper p {
    font-size: 1.25rem; /* Readable text size for paragraph */
    margin-bottom: 20px; /* Space above the button */
}

.btn-primary {
    background-color: #003D5B; /* Primary button color */
    border-color: #003D5B; /* Border color if needed */
    padding: 10px 20px; /* Padding for a larger button */
    font-size: 1.2rem; /* Larger font size for button text */
    border-radius: 5px; /* Rounded edges for the button */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
}
