html {
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: red;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(-180deg,
            rgba(208, 225, 240, 1) 0%,
            rgba(112, 157, 206, 1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.site-content {
    flex: 1;
}

:root {
    --primary: #2C4C71;
}

a.header-btn {
    text-decoration: none;
    border: 2px solid var(--primary);
    padding: 6px 20px;
    font-size: 16px;
    border-radius: 70px;
    color: var(--primary);
    font-weight: 600;
}

.hdr-logo {
    text-align: end;
}

.login-wrapper {
    height: calc(100vh - 56px);
    display: flex;
}

.full-row {
    flex: 1;
}

.left-section {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 45, 90, 0.85));
}

.left-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    z-index: 2;
}

.left-content h1 {
    font-size: 42px;
    font-weight: 600;
}

.left-content p {
    font-size: 14px;
    margin-top: 10px;
}

.right-section {
    height: 100%;
    background: linear-gradient(135deg, #d8e4f3, #a9c2dd);
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
    color: var(--primary);
}

.form-subtitle {
    font-size: 18px;
    color: #4a5f78;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.7;
}

.form-control {
    border-radius: 50px;
    padding: 14px 20px;
    border: none;
    font-size: 14px;
}

textarea.form-control {
    padding-top: 10px;
    height: 60px;
}

.frm-new-lable {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}


.btn-custom {
    border-radius: 50px;
    padding: 12px;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

.account-type .btn {
    border-radius: 30px;
    font-weight: 500;
}

.footer-text {
    font-size: 13px;
    color: #5f6f86;
    text-align: center;
    margin-top: 30px;
}

.account-type-wrapper {
    display: flex;
    gap: 15px;
}

.account-option {
    position: relative;
    cursor: pointer;
}

.account-option input {
    display: none;
}

.account-option span {
    position: relative;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    border: 1.5px solid #ffffff;
    background: rgba(255, 255, 255, 0.2);
    color: #2c4a6b;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.account-option span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    transition: all 0.6s ease;
}

.account-option input:checked+span {
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 140, 255, 0.4);
    transform: translateY(-2px);
}

.footer {
    background: #07315e;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
}

.account-option input:checked+span::before {
    left: 100%;
}

@media (max-width: 540px) {
    .logo img {
        width: 75% !important;
    }

    a.header-btn {
        font-size: 13px;
        padding: 5px 10px;
    }

    .form-title {
        font-size: 30px;
    }

    .form-subtitle,
    .frm-new-lable {
        font-size: 16px;
    }
}

@media (max-width: 991px) {

    .login-wrapper {
        min-height: auto;
        flex-direction: column;
    }

    .left-section {
        height: 300px;
    }

    .right-section {
        height: auto;
        padding: 40px 20px;
    }

    .left-content {
        bottom: 20px;
        left: 20px;
    }

    .left-content h1 {
        font-size: 26px;
    }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {

    .login-wrapper, .left-section, .right-section {
        height: auto;
    }

    .left-content h1 {
        font-size: 32px;
    }

    .left-content {
        bottom: 20px;
    }

    .form-title {
        font-size: 32px;
    }

    a.header-btn {
        font-size: 14px;
    }

    .logo img {
        width: 80% !important;
    }

}

.progress-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-line {
    position: absolute;
    top: 38%;
    left: 7%;
    width: 86%;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 0;
}

.progress-fill {
    position: absolute;
    top: 38%;
    left: 7%;
    height: 3px;
    width: 0%;
    background: var(--primary);
    z-index: 0;
    transition: width 0.4s ease;
}

.step-item {
    position: relative;
    text-align: center;
    padding: 30px 20px 15px;
    border-radius: 22px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
    /*z-index: 2;*/
}

.step-number {
position: absolute;
    top: 5%;
    right: 16%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    color: #fff;
    font-size: 18px;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2c3e50;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transition: all 0.3s ease;
}

.step-item.active {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transform: scale(1.04);
    animation: glowPulse 2.5s infinite ease-in-out;
    box-shadow: none !important;
}

.step-item.active .step-icon {
    transform: scale(1.1);
}

.step-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    transform: skewX(-25deg);
    animation: glassShine 1s ease forwards;
    border-radius: 22px;
}

@keyframes glassShine {
    0% {
        left: -75%;
    }

    100% {
        left: 130%;
    }
}

.step-item.completed .step-icon {
    border: 2px solid #2c4c71;
    background: rgb(44 76 113 / 30%);
    border-top: none;
    border-right: none;
}


.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: end;
    gap: 25px;
}

.btn-next {
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 60px;
    text-transform: uppercase;
}

.btn-prev {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.btn:hover {
    color: #ffffff;
    background: #0a58ca;
}

@media (max-width: 992px) {

    .progress-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
    }

    .step-item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        border-radius: 16px;
        transform: none !important;
    }

    .step-number {
        position: relative;
        transform: none;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        margin: 0;
        font-size: 20px;
    }

    .step-item::after {
        content: "";
        position: absolute;
        left: 28px;
        top: 100%;
        width: 2px;
        height: 25px;
        background: rgba(255, 255, 255, 0.3);
    }

    .step-item:last-child::after {
        display: none;
    }

    .step-item.completed::after {
        background: #1ca3dc;
    }

    .form-navigation {
        flex-direction: column;
        gap: 12px;
    }

    .btn-prev,
    .btn-next {
        width: 100%;
        padding: 12px;
        border-radius: 12px;
    }
}

.details-card {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 40px 30px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}


.section-title {
    position: absolute;
    top: -22px;
    left: 30px;
    background: #ffffff;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.form-label {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}


.form-control {
    height: 48px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid transparent;
    padding: 0 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #3d7db3;
    background: #ffffff;
}

.is-invalid {
    border: 1px solid #e53935 !important;
    background: #fff;
}

.error-text {
    font-size: 13px;
    color: #e53935;
    margin-top: 6px;
    display: none
}

.company-type {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 6px;
}

.form-select {
    height: 48px !important;
    border-radius: 10px;
}

.select2-container {
    width: 100% !important;
}

.select2-container--bootstrap4 .select2-selection--single {
    height: 48px !important;
    min-height: 48px;
    border-radius: 10px !important;
    background: #ffffff !important;
    border: 1px solid transparent !important;
    padding: 0 14px !important;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    box-shadow: none !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    color: #212529;
    line-height: normal !important;
    padding-left: 0 !important;
    padding-right: 28px !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
    top: 0 !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection--single,
.select2-container--bootstrap4.select2-container--open .select2-selection--single {
    border: 1px solid #3d7db3 !important;
    background: #ffffff !important;
}

.form-select.select2-hidden-accessible.is-invalid + .select2 .select2-selection--single {
    border: 1px solid #e53935 !important;
    background: #fff !important;
}

.select2-container--bootstrap4 .select2-dropdown {
    border: 1px solid #d7e1ec;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.select2-container--bootstrap4 .select2-search--dropdown .select2-search__field {
    border-radius: 8px;
    border: 1px solid #d7e1ec;
    padding: 8px 10px;
    font-size: 14px;
}

.select2-container--bootstrap4 .select2-results__option {
    padding: 10px 14px;
    font-size: 14px;
}

.select2-container--bootstrap4 .select2-results__option--highlighted[aria-selected] {
    background-color: #d0f7e9;
    color: #1f2f45;
}

.form-check-label {
    font-weight: 500;
    color: #1f2f45;
    margin-left: 8px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #2f4661;
    cursor: pointer;
}

.sub-heading {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.category-item{
    position:relative;
}

.category-item input{
    display:none;
}

.category-item label{
    padding:10px 22px 10px 40px;
    border-radius:12px;
    border:2px solid rgba(255,255,255,0.6);
    background:transparent;
    color:#ffffff;
    font-weight:500;
    cursor:pointer;
    transition:0.3s ease;
    position:relative;
}

.category-item label::before{
    content:"";
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    width:18px;
    height:18px;
    border-radius:4px;
    border:2px solid #fff;
}

.category-item input:checked + label{
    background:linear-gradient(135deg,#1e90ff,#00c6ff);
    border-color:transparent;
}

.category-item input:checked + label::before{
    background:#fff;
    border-color:#fff;
}

.category-item input:checked + label::after{
    content:"✓";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:12px;
    font-weight:600;
    color:#1e90ff;
}

@media (max-width: 991px) {
    .details-card {
        padding: 50px 20px 25px 20px;
    }

    .step-item p {
        text-align: left;
    }

    a.navbar-brand {
        width: 40% !important;
    }

    .step-number {
        right: 0;
    }

      .progress-line {
        top: 15%;
        left: 34px;
        width: 3px;
        height: 77%;
    }

    .progress-fill{
        display: none;
    }

}

@media (max-width: 576px) {
    .section-title {
        font-size: 16px;
        padding: 6px 18px;
    }

    .form-control {
        height: 36px;
    }
        .form-label{
        font-size: 14px;
    }

    .row>*{
        margin-top: 10px;
    }

    .sub-heading{
        font-size: 16px;
    }

}

@media (min-width: 992px) {
    .step-item p {
        min-height: 50px;
    }

    a.navbar-brand {
        width: 20% !important;
    }

    .step-item {
        min-width: 200px;
        max-width: 200px;
    }

}

.details-card{
    position:relative;
    background:rgba(255,255,255,0.18);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-radius:20px;
    padding:70px 20px 40px;
    border:1px solid rgba(255,255,255,0.4);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.section-title{
    position:absolute;
    top:-24px;
    left:40px;
    background:#e9eef3;
    padding:10px 30px;
    border-radius:30px;
    font-weight:600;
    font-size:20px;
    color:#2f4661;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.content-text{
    font-size:15px;
    line-height:1.8;
    color:#1f2f45;
}

.content-text strong{
    font-weight:600;
}

.content-text a{
    color:#1e90ff;
    text-decoration:none;
}

.content-text ul{
    padding-left:20px;
    margin-top:15px;
}

.content-text li{
    margin-bottom:8px;
}


.custom-check{
    position:relative;
    margin-bottom:15px;
}

.custom-check input{
    display:none;
}

.custom-check label{
    position:relative;
    padding-left:35px;
    cursor:pointer;
    font-weight:500;
    color:#1f2f45;
}

.custom-check label::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    width:18px;
    height:18px;
    border:2px solid #2f4661;
    border-radius:4px;
    background:#ffffff;
}

.custom-check input:checked + label::after{
    content:"✓";
    position:absolute;
    left:4px;
    top:1px;
    font-size:14px;
    font-weight:600;
    color:#1e90ff;
}


.signature-label{
    font-weight:500;
    margin-bottom:8px;
}

.signature-box{
    border-bottom:2px solid #ffffff;
    height:50px;
    position:relative;
}

.signature-text{
    font-family:'Great Vibes', cursive;
    font-size:30px;
    position:absolute;
    bottom:-5px;
    left:10px;
    color:#000;
}


.form-control:focus{
    box-shadow:none;
    border:1px solid #3d7db3;
    background:#ffffff;
}

.btn-create{
    background:#2f4661;
    color:#fff;
    padding:14px 40px;
    border-radius:30px;
    font-weight:600;
    border:none;
    transition:0.3s ease;
}

.btn-create:hover{
    background:#1e90ff;
}


@media(max-width:768px){
    .details-card{
        padding:65px 25px 30px;
    }

    .section-title{
        left:25px;
        font-size:18px;
    }
}

@media(max-width:576px){
    .details-card{
        padding:60px 20px 25px;
    }

    .section-title{
        left:20px;
        font-size:16px;
    }

    .signature-text{
        font-size:24px;
    }
}
/* Modal Container */
.confirmation-modal-content {
    border: none;
    border-radius: 18px;
    padding: 20px 10px;
    background: linear-gradient(135deg, #d8e4f3, #a9c2dd);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    position: relative;
}

/* Close Button */
.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1055; /* ensure it's above everything */

    opacity: 0.7;
}

    .custom-close:hover {
        opacity: 1;
    }

/* Body */
.confirmation-modal-body {
    text-align: center;
    padding: 20px 30px 30px;
}

/* Title */
.confirmation-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c4c71;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Details Box */
/*.confirmation-details {
    background: #eef3f8;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 30px;
}*/

/* Rows */
.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

    .detail-row:not(:last-child) {
        border-bottom: 1px solid #d9e1ea;
    }

/* Text */
.detail-label {
    font-size: 14px;
    color: #6b7f95;
}

.detail-value {
    font-size: 14px;
    font-weight: 700;
    color: #2c4c71;
}

/* Buttons Layout */
.confirmation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* YES Button */
.btn-confirm-yes {
    background: #2c4c71;
    color: #fff;
    border: none;
    padding: 10px 45px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-confirm-yes:hover {
        background: #1f3a55;
    }

/* NO Button */
.btn-confirm-no {
    background: transparent;
    color: #2c4c71;
    border: 2px solid #2c4c71;
    padding: 10px 45px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-confirm-no:hover {
        background: rgba(255,255,255,0.6);
    }

/* Bigger modal */
.confirm-modal-lg {
    max-width: 650px;
}


/* Subtitle */
.confirmation-subtitle {
    font-size: 16px;
    color: #4f6b88;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Note text */
.confirmation-note {
    font-size: 14px;
    color: #6b7f95;
    margin-top: -10px;
    margin-bottom: 25px;
}


/* Slightly bigger details box */
.confirmation-details {
    background: #eef3f8;
    border-radius: 14px;
    padding: 20px 25px;
    margin: 0 auto 25px;
    max-width: 420px;
}


/* thank you page  */
.thank-you-wrap .details-card {
    padding-top: 40px;
    padding-bottom: 20px;
}

.swiper {
    width: 100%;
}

.swiper .swiper-wrapper {
    padding-bottom: 3rem;
}

.swiper-slide {
    color: #FFFFFF;
    height: auto;
    border-radius: 12px;
    background: #07315e;
    transition: 0.4s;
    overflow: hidden;
}

.swiper-slide .product-box {
    width: 100%;
    height: 100%;
}

.swiper-slide .prod-img {
    width: 100%;
    height: 150px;
    padding: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-slide .prod-content .prod-detail {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: wrap;
}

.swiper-slide .prod-content .prod-name {
    min-height: 50px;
    line-height: normal;
}
/* thank you page  */