:root {
    /*--primary-color: #809baf;*/
    --primary-color: #5C768A;
    --secondary-color: #FFFFFF;
}

html {
    font-size: 14px;
}


/*Data table styling*/
.admin h1{
    color: var(--primary-color);
}

.admin table {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur, color */
}

.admin.view label{
    font-weight: bold;
}

table thead{
    color: white;
    background-color: var(--primary-color);
}

.hpCarousel {
    background-color: var(--primary-color);
    aspect-ratio: 4/5;
    display: flex;
    justify-content: center;
}



#carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
   height: 100%;
   width: 100%;
   object-fit: contain; /* fills the frame */
}


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 3000px){
    html {
        font-size: 25px;
    }

    .logo-container {
        max-height: 200px;
        max-width: 600px !important;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

}



#logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-container {
    max-height: 200px;
    max-width: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.nav-link.separator:hover {
    box-shadow: none;
}

.home-pg > .row{
    min-height: 100%;
} 

.home-pg {
    color: var(--secondary-color);
}


.home-pg a {
  color: var(--secondary-color);
}

.headshot{
    height: auto;
    width: 180px;
    object-fit:contain;
    overflow: hidden;
    border-radius: 50%;
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

.btn, .btn:disabled {
    background-color:var(--primary-color);
    border-color: var(--secondary-color);
}

.btn:hover,
.btn:focus {
   background-color: #6b8699; /* slightly darker shade of primary */
   color: #fff;
   border-color: var(--secondary-color);
 }

.btn:active {
    background-color: #5c7586; /* even darker for pressed state */
    color: #fff;
}

.nav-link:hover {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}


html {
    position: relative;
    min-height: 100%;
}

body {
    padding-bottom: 60px;
}


.section-shadow {
    box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur, color */
    border-radius: 6px; /* optional for smooth corners */
}

.section-shadow:hover {
   box-shadow: 15px 25px 25px rgba(0, 0, 0, 0.5);
   transition: box-shadow 0.3s ease;
}


.about-us > p {
    padding: 15px;
    text-indent: 2em; /* controls how far the indent goes */
    line-height: 1.4; /* improves readability */
    margin-bottom: 0.2rem; /* space between paragraphs */
}



.contact-us > div {
    background-color: var(--primary-color);
}



    /*Quote Reqeust Form*/
.qr-form {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 10px 15px 20px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur, color */
    border-radius: 6px;
}


.qr-form legend{
    padding-top: 60px;
    border:hidden;
}

    .qr-form legend.stp3{
        padding-top: 0px;
    } 

    .step {
        display: none;
    }


.thank-you {
    height: 50vh !important;
    
}

.stepper-container {
    max-width: 800px;
    height: 80px;
    margin: 2rem auto;
    position: relative;
}

.stepper-step {
    z-index: 2;
}

.circle {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0.5rem auto;
    font-weight: bold;
    color: #444;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
   
}

 .circle.active {
        background-color: var(--primary-color);
        color: white;
    }

.label {
    font-size: 0.9rem;
    text-align: center;
}

.progress-line {
    height: 4px;
    background-color: #dee2e6;
    z-index: 1;
    border-radius: 2px;
    top: 33%;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.4s ease;
}

.required::after {
    content: " *";
    color: red;
}


.requiredDenote::before {
    content: "* ";
    color: red;
}
