body {
    font-family: Aquire, Calibri;
    background-color: #0B141D;
    color: white;
}
/*#region Main Heading Container*/
.mainHeadingContainer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../Assets/Images/headbg.png);
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 10px;
    padding: 10px;
}
 .mainHeadingContainer h1
 {
     width: 100%;
     font-size: 30px;
     font-family: Aquire;

 }
 .mainHeadingContainer h4
 {
     font-size:20px;
     font-weight: 100;
     
 }
    .mainHeadingContainer button {
        height: 50px;
        width: 250px;
        text-align: center;
        font-size: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        stroke-width: 2px;
        border-color: #4675A3;
        color: white;
        padding:10px;
        padding-bottom:10px;
        background: linear-gradient(to bottom, #26415B, #162737);
    }
.mainContentHolder
{

}
    .mainContentHolder h1 {
        width: 100%;
        font-size: 30px;
        font-family: Aquire;
    }

    /*#endregion*/
    /*#region Cartridge Selection Container*/
.search-bar {
    border-radius: 10px;
    height: 15px;
    padding: 10px;
    background-color: #0B141D;
    color: white;
    border-color: #4675A2;
    border-width: 2px;
    width: 300px;
}
    
.cartridge-container {
    width: 100%;
    height: 220px;
    overflow-x: auto; /* Change overflow-x from 'scroll' to 'auto' */
    border: 1px solid black;
    direction: ltr;
    overflow-y: clip;
    display: flex; /* Added flex display */
    flex-wrap: nowrap; /* Prevents wrapping of elements */
    margin-top:20px;
    margin-bottom:20px;
}
.cartridgeElement {
    height: 200px;
    width: 150px;
    padding: 20px;
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; 
    border-radius: 10px;
    stroke-width: 2px;
    border-color: #4675A3;
    color: white;
    background: linear-gradient(to bottom, #26415B, #162737);
}

    .cartridgeElement img {
        width: 130px;
        height: 130px;
        border-color: slategrey;
        border-width: 2px;
    }

    .cartridgeElement h4 {
        margin: 0px;
        text-align: center;
    }

    .cartridgeElement h6 {
        margin: 0px;
        text-align: center;
    }
.scroll-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    border: 2px solid #ccc;
    width: 400px;
}
/*#region Cartridge Selection Replace Popup*/

#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to bottom, #26415B, #162737);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px solid #4675A3;
    z-index: 100;
    text-align: center;
    color: white;
    width: 300px;
}

    #popup p {
        margin-bottom: 15px;
        font-size: 14px;
    }

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#popup button {
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #4675A3;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

    #popup button:hover {
        background: #4675A3;
        color: #162737;
    }
/*#endregion*/
    /*#endregion*/







/*#region Contact Button*/
.contactButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom, #26415B, #162737);
    color: white;
    border: 2px solid #4675A3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
    padding: 10px;
    z-index: 1000;
}

    .contactButton img {
        width: 100%;
        height: auto;
        filter: brightness(0.9);
    }

    /* Desktop Hover Effect */
    .contactButton:hover {
        background: #4675A3;
        box-shadow: 0 4px 15px rgba(70, 117, 163, 0.5);
        transform: scale(1.1);
    }

    /* Mobile Touch Effect */
    .contactButton:active {
        background: #4675A3;
        transform: scale(1.1);
    }

/* Ensure Responsiveness */
@media (max-width: 600px) {
    .contactButton {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 400px) {
    .contactButton {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }
}
/*#endregion*/

/* #region Get In Touch Popup */
#getInTouchPopup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 90%;
    max-width: 350px;
    background: linear-gradient(to bottom, #26415B, #162737);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    #getInTouchPopup.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    #getInTouchPopup h3 {
        margin-top: 0;
    }

    #getInTouchPopup input,
    #getInTouchPopup select,
    #getInTouchPopup textarea {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background: #162737;
        color:white;
    }

    .getInTouchPopup button {
        width: 100%;
        padding: 10px;
        border: none;
        background: #007bff;
        color: white;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s;
    }

        #getInTouchPopup button:hover {
            background: #0056b3;
        }

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
/*#endregion*/

/*#region Pricing Quote Popup Style*/
#getPricingQuote {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(to bottom, #2A3D55, #1A2533);
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    z-index: 1000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    #getPricingQuote.show {
        display: block;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

#getPricingQuote h3 {
    margin-top: 0;
    color: #fff;
    text-align: center;
}

.getPricingQuote-MainTb {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.quote-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.getPricingQuote-Labels {
    color: #aaa;
}

h5 {
    color: #fff;
    font-weight: 600;
}

#getPricingQuote input,
#getPricingQuote select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 6px;
    background: #1A2533;
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background: #0056b3;
    }

.close-btn1 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
/*#endregion*/




/*#region UserTypes*/
/* Container aligned to the left */
.userTypes-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns all modules to the left */
    gap: 15px;
    margin: 20px;
    width: 100%;
    max-width: 400px;
}

/* Module structure */
.moduleTypes {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligns image/text on left and cost/quantity on right */
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #4675A3;
    background: linear-gradient(to bottom, #26415B, #162737);
    transition: transform 0.3s ease;
}

    .moduleTypes:hover {
        transform: translateY(-3px);
    }

/* Image & Text stacked on the left */
.moduleInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

    .moduleInfo img {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
    }

    .moduleInfo h4 {
        color: white;
        margin: 0;
        font-size: 16px;
    }

/* Quantity and Cost on the right */
.quantityCostHolder {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 2px solid #4675A2;
    border-radius: 8px;
    background-color: #0B141D;
    font-size: 16px;
    min-width: 200px;
    justify-content: space-between;
}

    .quantityCostHolder label {
        color: #FFF;
        font-size: 16px;
    }

    .quantityCostHolder input {
        width: 50px;
        padding: 6px;
        background-color: #0B141D;
        color: white;
        border: 2px solid #4675A2;
        border-radius: 6px;
        font-size: 16px;
        text-align: center;
        outline: none;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .quantityCostHolder input:focus {
            border-color: #5A9EDF;
            box-shadow: 0 0 8px rgba(90, 158, 223, 0.5);
        }

.xClass {
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
}

/*#endregion */


/*#region Get Pricing Quote*/
/* Grand Total Container */
#grandTotalContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #4675A3;
    background-color: #162737;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

/* Button Styling */
.pricingQuoteButton {
    background: linear-gradient(to bottom, #26415B, #162737);
    border-color: #4675A3;
    border-width: 2px;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

    .pricingQuoteButton:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 10px rgba(90, 158, 223, 0.7);
    }

    /* Button Text */
    .pricingQuoteButton h2 {
        margin: 0;
        font-size: 18px;
    }

/* Pricing Disclaimer */
.pricingDisclaimer {
    font-size: 14px;
    color: #BBB;
    line-height: 1.4;
    text-align: left;
    padding: 10px;
    border-left: 4px solid #5A9EDF;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-family:Calibri;
}

/*#endregion*/


.template-div {
    display: none;
}

.template {
    opacity: 1;
    overflow: hidden;
}

    .template.show {
        visibility: visible;
        opacity: 1;
        height: auto;
    }
