* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F3F3F3; /* Light gray */
    text-align: center;
    color: #333; /* Dark gray text color for contrast */
    font-family: 'Arvo', serif;
}


.cover-container {
    width: 100vw;
    height: 100vh;
}

.masthead {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6); /* Making the background of navbar slightly transparent for better visibility of video*/
    color: #ffffff;
}

.masthead-brand {
    margin: 0.5rem;
    color: #ffffff; /* Set title color to light */
}

.nav-masthead .nav-link {
    padding: .25rem 0;
    color: #ffffff; /* Set link color to white */
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link+.nav-link {
    margin-left: 1rem;
}

.mastfoot {
    color: rgba(255, 255, 255, .5);
}

.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}



.container {
    position: relative;
    z-index: 2;
    padding-top: 60px; /* Provide space for fixed navbar */
}

h1 {
    font-size: 2.5em;
    margin-top: 20px;
    margin-bottom: 20px;
}

p.lead {
    font-size: 1.25em;
    margin-bottom: 20px;
}

img.img-fluid {
    max-width: 100%;
    height: auto;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
    padding: 50px 0;
    font-size: xx-small;
}

.card {
    height: 90%;
    margin-bottom: 20px;
}

.testimonial-card {
    border-left: 5px solid #315c7f; /* Dark gray to match text */
    padding: 1.5rem 2rem; /* Vertical and horizontal padding */
    margin-bottom: 2rem;
    background-color: #f9f9f9;  /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);  /* Adds a slight shadow */
}


blockquote {
    font-style: italic; /* Italicize the quote for visual distinction */
    margin: 0 0 1rem;  /* Remove default margin, and add a bit at the bottom */
}

.testimonial-name {
    font-weight: bold;
    display: block;
    margin-top: 1rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #777;
}

hr {
    width: 50%;  /* Adjusts the width to half of its container */
    margin: 1rem auto;  /* Centers the HR and provides margin on the top and bottom */
    border-top: 1px solid #ccc;  /* Color adjustment for the HR, can be changed as desired */
}



