﻿/* #region html and body */

@import url("https://fonts.googleapis.com/css?family=Inter:opsz,wght@0,14..32,200..900&display=swap");

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    width: 100%;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #013e6b, #01a0d0);
    background-attachment: fixed; /* Ensures the gradient stays fixed */
    background-size: cover; /* Ensure the gradient covers the entire background */
    background-position: center; /* Center the background gradient */
    min-height: 100vh; /* Ensure minimum height of the viewport */
    margin: 0; /* Remove default margin */
    padding: 0;
    color: white;
}

/* #endregion */

/* #region navbar and footer */

.navbar-nav .nav-link:hover {
    color: #00ABDC;
}

.navbar-nav .nav-link {
    color: white;
}

    .navbar-nav .nav-link.active {
        background: #00ABDC;
        color: white;
    }

.navbar-collapse {
    background: #006290;
    opacity: 0.8;
}

.navbar-toggler {
    border: 1px solid gray;
}

.navbar-toggler-icon {
    background-image: url('/img/mobile-menu-toggler.svg')
}

#mobileBannerContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#mobileBannerBottom {
    display: block;
    width: 110vw;
    height: auto;
    margin: 0;
    padding: 0;
}


@media (max-width: 991px) {
    /*    body {
        background: linear-gradient(305deg, #00abdc, #003c68);
    }*/

    .navbar-brand img {
        max-height: 60px;
        padding: 0 !important;
        margin: 0;
    }

    .navbar {
        padding: 15px 15px 0 15px;
        /*margin-bottom: 30px;*/
        /*border-bottom: 1px solid #006290*/
        background: white;
    }

    .navbar-collapse {
        margin: 10px 0;
        border-radius: 15px;
        background: #eeeeee;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        cursor: pointer;
        padding: 10px 20px !important;
        width: auto !important;
        opacity: 1;
        color: #333333
    }

        .navbar-nav .nav-link:first-child {
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .navbar-nav .nav-link:last-child {
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
        }

        .navbar-nav .nav-link.active {
            background: #006290;
        }

    .footer {
        margin: 30px 40px 5px;
        border-top: 2px dashed white;
        padding-top: 30px !important;
    }

    .footer-link:first-child {
        margin-left: 0;
    }

    .footer-link:last-child {
        margin-right: 0;
    }

    .footer-icon:first-child {
        margin-left: 0;
    }

    .footer-icon:last-child {
        margin-right: 0;
    }

    .footer-left, .footer-center, .footer-right {
        justify-content: center;
        padding: 10px 0;
    }

    .footer-icon i {
        font-size: 22px;
    }

    #blackLogo {
        display: inherit;
    }

    #whiteLogo {
        display: none;
    }

    #mobileBannerBottom {
        display: block;
    }

    .container {
        padding: 20px 40px;
    }

    .footer-icon {
        margin: 0 15px;
    }

    .footer-logo > img {
        display: none
    }

    #footer-logo-mobile {
        height: 35px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .navbar-brand img {
        max-height: 100px !important;
    }

    .navbar {
        padding: 20px 30px;
        margin-bottom: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        cursor: pointer;
        padding: 10px 20px !important;
    }

    .navbar-collapse {
        border-radius: 35px;
        /*flex-grow: 0;*/
    }

    .navbar-nav .nav-link:first-child {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        padding-left: 30px !important;
    }

    .navbar-nav .nav-link:last-child {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        padding-right: 30px !important;
    }

    #blackLogo {
        display: none;
    }

    #whiteLogo {
        display: inherit;
    }

    #mobileBannerContainer {
        display: none;
    }

    .footer-icon i {
        font-size: 14px;
    }

    .footer-icon {
        margin: 0 8px;
    }

    .footer-logo img {
        height: 20px;
    }

    .footer {
        opacity: 0.8;
    }

    #footer-logo-mobile {
        display: none;
    }
}

.footer {
    padding: 10px 20px;
    color: white;
    background-color: transparent;
    font-size: 12px;
}

.footer-left, .footer-center, .footer-right {
    display: flex;
    align-items: center;
}

.footer-link {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

.footer-icon {
    color: white;
}



/* #endregion */

/* #region Form Styles */

/* #region Upload Button */

.uploadButton input[type="file"] {
    display: none; /* Hide the default file input */
}

.uploadButton {
    align-self: center;
    justify-content: center; /* Center items horizontally */
    border-radius: 20px;
    /*background: linear-gradient(to bottom, #00ABDC, #0276c9);*/
    background: rgba(255, 255, 255, 0.40);
    opacity: .8;
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

    .uploadButton.pink {
        background: linear-gradient(#EA519E, #3A0923);
    }

.upload-icon {
    width: 32px;
}

.file-confirmation {
    margin-bottom: 10px;
    text-align: right;
    padding-right: 15px;
    margin-top: -5px;
    font-size: 12px
}

    .file-confirmation img {
        height: 15px;
        margin-right: 7px
    }


/* #endregion  */

/* #region Textbox Styles */

.smallLabel {
    font-size: 12px;
    opacity: 1;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 !important;
    padding: 0 !important;
}

.form-divider {
    height: 2px;
    border-top: 1px solid #eeeeee;
    opacity: .2;
    margin: 15px 0;
}

.input-group {
    /*background: linear-gradient(to right, #00ABDC, #0276c9);*/
    /*border-radius: 10px;*/
    margin-bottom: 10px;
    padding-bottom: 0;
}

.form-control {
    font-family: 'Inter', sans-serif;
    border: 0;
    border-radius: 10px;
    font-size: 13px;
    color: white;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.10);
    /*background: transparent;*/
}

    .form-control:hover {
        /*background: linear-gradient(to right, #00ABDC, #00ABDC)*/
        background: rgba(255, 255, 255, 0.50);
    }

    .form-control::placeholder {
        color: #eeeeee;
        text-align: center;
        opacity: 0.5;
    }

    .form-control:hover::placeholder {
        opacity: 1;
    }

.textarea {
    height: 75px;
    resize: none;
}

.actionLink {
    font-size: 13px;
    text-decoration: none;
    color: #76cbe3;
    opacity: .9;
}

    .actionLink:hover {
        color: #00ABDC;
    }

/* #endregion */

/* #region Terms and Conditions */

.checkbox-section {
    display: flex;
    align-items: center;
    /*    padding: 0 15px;*/
}

.checkbox {
    width: 15px;
    height: 15px;
    border: 1px solid white;
    background-color: transparent;
    border-radius: 3px; /* Optional: slight rounding for a modern look */
    appearance: none; /* Removes default styling */
    cursor: pointer;
    margin-right: 10px;
}

    .checkbox:checked {
        background-color: #00ABDC; /* Color when checked */
        border-color: #00ABDC; /* Border color when checked */
    }

        .checkbox:checked::after {
            content: '✔'; /* Checkmark symbol */
            color: white;
            font-size: 11px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            top: -1px; /* Adjusts alignment */
            left: 0px;
        }

.terms-text {
    font-size: 11px;
}

.terms-link {
    color: white;
    text-decoration: underline;
}

/* #endregion */

.submit-button {
    background: radial-gradient(#00ABDC, #007CAA); /* Gradient background */
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 15px; /* Rounded corners */
    cursor: pointer;
    width: 100%; /* Ensure it spans 100% width of the container */
    margin-top: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Drop shadow */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

    .submit-button.disabled {
        cursor: not-allowed;
        color: #007CAA;
        pointer-events: none;
    }

    .submit-button.pink {
        background: linear-gradient(90deg, #3A0923, #EA519E);

    }

.submit-button.pink.disabled {
    color: #999999
}

#callout {
    font-size: 8px;
    text-transform: uppercase;
    width: 300px !important;
    display: inline-block; /* Ensure the width is respected */
    padding: 0;
    margin: 0;
    padding-right: 10px;

}

#callout > img {
    width: 40px;
    float: right;
}

@media (min-width: 1200px) {
    #callout {
        font-size: 11px;
        padding-right: 15px;
    }

    #callout > img {
        width: 60px
    }
}

@media (max-width: 991px) {
    #callout {
        display: none;
    }
}



/* #endregion */
/* #region Upload Progress */
.progress {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    height: 10px;
    opacity: .8;
}

.progress-bar {
    height: 10px;
    background-color: #007bff;
    text-align: center;
    line-height: 10px;
    color: white;
    width: 0;
}

.moving-bar-container {
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
    height: 10px;
    /*margin-bottom: 20px;*/
    border-radius: 5px;
    opacity: .8;
}

.moving-bar {
    width: 50px;
    height: 50px;
    background-color: #00ABDC;
    position: absolute;
    animation: moveBackAndForth 2s linear infinite;
}

.statusText {
    opacity: 0.8;
    color: white;
    font-size: 12px;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
}

.statusPanel {
    /*background: linear-gradient(to bottom, #00ABDC, #0276c9);*/
    background: rgba(255, 255, 255, 0.40);
    padding: 10px 15px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    opacity: 0.8;
}

@keyframes moveBackAndForth {
    0% {
        left: 0;
    }

    50% {
        left: calc(100% - 50px);
    }

    100% {
        left: 0;
    }
}

/* #endregion */

/* #region Text Column */

.subheading {
    font-size: 16px;
    border-bottom: 2px solid white; /* Adds a white line under the heading */
    padding-bottom: 20px; /* Optional: Adds some space between the heading and the line */
    font-weight: normal;
    margin-bottom: 30px
}

.heading {
    font-size: 55px;
    font-weight: 900 !important;
    text-transform: uppercase;
    font-variation-settings: 'wght' 900;
    -webkit-font-smoothing: antialiased;
}

.headerDivider {
    border-bottom: 2px solid white;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.divider {
    border: none; /* Removed the line under the divider */
    margin-top: 20px;
}

.description {
    font-family: Inter;
    /*font-size: 15px; */
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.small-copy {
    font-family: Inter;
    font-weight: 300;
    line-height: normal;
}

.steps-area {
    margin-top: 60px !important;
    display: flex;
    justify-content: center; /* Center the columns horizontally */
    gap: 40px; /* Ensure spacing between the columns */
    text-align: center;
}

.step-item {  
   display: flex;  
   flex-direction: column;  
   align-items: center;  
   gap: 10px;  
   flex: 1;  
   justify-content: flex-start; /* Align items vertically to the top */  
}

.step-number {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

    .step-number img {
        height: 40px;
    }

.why-us .step-number img {
    height: 32px;
    margin-bottom: 10px;
}

.svg-invert {
    filter: invert(100%) grayscale(100%) brightness(100%);
}

.step-heading {
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 2px;
}

.step-heading-smaller {
    font-size: 14px;
    font-weight: bold;
}


.step-text {
    font-weight: 300;
    font-size: 13px;
    justify-content: center;
}

.step-text-smaller {
    font-size: 13px;
    text-align: center;
}


@media (min-width: 1200px) {
    .flex-container {
        display: flex;
        align-items: flex-start; /* Align items to the top */
    }

    .left-side-image {  
       flex: 0 0 25%; /* Adjust the width as needed */  
       margin-right: 40px;  
       display: flex; /* Add this line */  
       align-items: center; /* Center vertically */  
       justify-content: center; /* Center horizontally */  
       height: 100%; /* Ensure it takes full height of the container */
    }

    .left-side-image img {
        width: 100%;
        height: auto;
/*        border: 1px solid red;*/
        margin-top: 12px;

    }

    .content {
        flex: 1; /* Take up the remaining space */
    }
}

@media (max-width: 1199.99px) {
    .left-side-image {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .steps-area {
        flex-direction: column !important;
        flex-wrap: wrap; /* Allow children to wrap to the next row */
        gap: 40px;
    }

    .subheading {
        border-bottom: 2px solid #0da778;
    }

    .step-item-border {
        border: 2px solid white;
        padding: 20px 15px;
        border-radius: 15px;
    }

    .step-number {
        font-size: 40px;
        line-height: 1;
        font-weight: bolder;
    }

    .heading {
        font-size: 50px
    }
}

/* #endregion */

/* #region Mobile upload form place holder */

.upload-form-image {
    background-image: url('/img/upload-form-img.png');
    background-size: contain; /* Ensure the image does not stretch */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-position: center; /* Center the image */
    position: relative;
    margin: 60px 0 0;
    /*padding: 250px 0;*/
    /*padding: 0 20px;*/
    min-height: 420px;
    /*opacity: 0.6;*/ /*opacity: 0.6;*/
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: rgba(255, 255, 255, 0.30);
    border-radius: 15px;
}

.upload-form-text {
    color: #013e6b;
    opacity: 1;
    background: white;
    text-align: center;
    padding: 20px;
    width: 300px;
    border-radius: 15px;
    font-weight: bold;
}

/* #endregion */

/* #region Pricing */
.price-area {
    display: flex;
    /*    padding: 0 px;*/
    align-items: stretch; /* Make items the same height */
    gap: 30px;
    align-self: stretch;
}

.price-card {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.20);
    margin: 0 10px;
    padding: 60px 25px 30px;
    text-align: center;
    flex: 1;
    position: relative;
}

    .price-card.premium {
        background: rgba(255, 255, 255, 0.40) !important;
    }

@media (max-width: 991px) {
    .price-area {
        flex-direction: column !important;
        flex-wrap: wrap; /* Allow children to wrap to the next row */
        gap: 40px;
    }
}

.price-card .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.8;
}

.price-card .subTitle {
    font-size: 14px;
    font-weight: 300;
}

.price-card .amount {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.price-card-spacer {
    height: 30px
}

.price-card ul {
    text-align: left;
    font-weight: 300;
    font-size: 12px;
    list-style-type: none; /* Remove default bullets */
    padding-left: 25px; /* Remove default padding */
}

    .price-card ul li::before {
        content: '✔'; /* Add check mark before each list item */
        color: white; /* Set color of the check mark */
        margin-right: 10px; /* Add some space between check mark and text */
    }

    .price-card ul li {
        text-indent: 25px;
    }

    .price-card ul li {
        text-indent: -20px;
    }

.price-banner {
    padding: 12px 50px;
    align-items: center;
    border-radius: 0px 50px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    background: linear-gradient(107deg, #3A0923 26.56%, #EA519E 99.88%);
    position: absolute;
    top: 0;
    right: 0;
}

.pricingPlaceHolder {
    padding-bottom: 25px;
    border-bottom: 1px solid #007caa;
    margin-bottom: 50px;
}
/* #endregion */
/* #region About Us */
.about-us-client {
    text-align: center
}

@media (min-width: 992px) {
    .about-us-client {
        margin-left: 40px;
    }
}

@media (max-width: 991px) {
    .about-us-client {
        margin-top: 40px;
    }
}



.aboutus-logo-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px 30px;
    align-self: stretch;
    flex-wrap: wrap;
}

    .aboutus-logo-area img {
        width: 20%
    }

.about-us-client p {
    font-size: 9px;
    font-weight: 200;
}

.quote-box {
    padding: 20px 15px;
    position: relative;
}

    .quote-box::before {
        content: "\201C"; /* Left quote mark */
        font-size: 20px;
        position: absolute;
        top: 20px;
        left: 0;
    }

    .quote-box::after {
        content: "\201D"; /* Right quote mark */
        font-size: 20px;
        position: absolute;
        top: 20px;
        right: 0;
    }

.quote-content {
    margin: 0 5px 0 10px;
}

.client-name {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

.client-logo {
    width: 50px;
    margin: 20px 0;
}


/* #endregion */

/* #region Contact Us */

.contact-us-container {
    display: flex !important;
    flex-direction: row; /* Default order for larger screens */
}

.contact-form-title {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bold-text {
    font-weight: 500
}

.italic-text {
    font-style: italic
}

@media (max-width: 991px) {
    /* Adjust the max-width as needed */
    .contact-us-container {
        flex-direction: column !important; /* Stacks the divs vertically */
    }

    .contact-form-section {
        order: 2; /* Moves the first div to the second position */
        margin-top: 40px;
    }

    .contact-us-text {
        order: 1; /* Moves the second div to the first position */
    }

    .contact-form-title {
        font-size: 18px;
    }

    /*    .bold-text {
        font-weight: 300
    }*/
}

@media (min-width: 992px) {
    .contact-form-section {
        min-width: 250px !important;
        margin-right: 75px
    }
}


/* #endregion */

/* #region General */
.modal-content {
    color: #666666;
}

.validation-summary-errors > ul {
    font-size: 12px;
    margin-top: 10px;
    padding: 10px 25px !important;
    border: 1px dashed red;
    background: #0276c9;
    border-radius: 10px;
    opacity: .8
}

.upload-section {
    min-width: 300px !important;
    margin-right: 75px
}

@media (min-width: 768px) {
    .submit-button.short {
        width: 350px;
    }
}

.all-caps-bold {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

a.submit-button {
    text-decoration: none;
    font-weight: normal;
    display: block;
    text-align: center;
}

h4 {
    font-weight: 500;
    margin-top: 30px
}

.actionLink.disabled {
    color: #666666;
    cursor: not-allowed
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* #endregion */
