* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: #e8f5ff;
}

body::-webkit-scrollbar {
    width: 10px;
    height: 0px;
    display: none;
}

body {
    scrollbar-width: 10px;
    -ms-overflow-style: none;
}

.boq-page {
    padding: 20px 5px;
    max-width: 1150px;
    margin: 0 auto;
}

.boq-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0f172a;
}

.boq-header-link {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.boq-header span.boq-header-logo {
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #096FB7;
    margin-right: 5px;
}

.boq-logo {
    height: 32px;
}

.boq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #0f172a;
}

.boq-subtitle {
    text-align: center;
    color: #212a38;
    margin-bottom: 20px;
    font-weight: 500;

}

.boq-subtitle span {
    background-color: #fdffcb;
    font-weight: 600;
    padding: 0 2px;
}

.boq-subtitle-strip {
    display: inline-block;
    background-color: #45A3E5;
    padding: 6px 14px;
    color: #fff;
    text-align: center;
    border-radius: 40px;
    margin-top: 0px;
}

.boq-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.boq-illustration-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.boq-illustration {
    width: 100%;
    max-width: 520px;
    z-index: 2;
}

.boq-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.85;
    animation: boq-float ease-in-out infinite;
    pointer-events: none;
}

.boq-dot.blue {
    background: #4da3ff;
}

.boq-dot.yellow {
    background: #f4c56d;
}

.d1 {
    width: 11px;
    height: 11px;
    top: 10%;
    left: 15%;
    animation-duration: 6s;
}

.d2 {
    width: 10px;
    height: 10px;
    top: 20%;
    right: 18%;
    animation-duration: 7s;
}

.d3 {
    width: 12px;
    height: 12px;
    top: 45%;
    left: 5%;
    animation-duration: 8s;
}

.d4 {
    width: 9px;
    height: 9px;
    bottom: 25%;
    right: 10%;
    animation-duration: 6.5s;
}

.d5 {
    width: 11px;
    height: 11px;
    bottom: 10%;
    left: 25%;
    animation-duration: 7.5s;
}

.d6 {
    width: 10px;
    height: 10px;
    top: 60%;
    right: 30%;
    animation-duration: 8.5s;
}

@keyframes boq-float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(6px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.boq-right {
    padding: 0px;
    border-radius: 16px;
}

.boq-step-title {
    font-size: 18px;
    font-weight: 600;
}

.boq-provider-box {
    display: flex;
    gap: 25px;
    margin: 20px 0;
}

.boq-provider-box label {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.boq-provider-box input {
    accent-color: #2563eb;
}

.status-row {
    display: flex;
    justify-content: space-between;

}

.boq-helper-text {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.boq-upload-box {
    border: 2px dashed #9ca3af;
    border-radius: 12px;
    padding: 120px 30px 0px 30px;
    text-align: center;
    background: #fff;
    min-height: 300px;
}

.box-footer {
    bottom: 0;
}

.boq-upload-box-icon {
    width: 48px;
    margin-bottom: 12px;
}

.boq-hidden-file {
    display: none;
}

.boq-upload-btn {
    background: #45A3E5;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0;
}

.boq-download {
    background: #45A3E5;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0;
}

.boq-upload-btn:hover {
    background: #3b93d6;
}

.boq-supported {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

.boq-upload-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.boq-upload-status {
    font-size: 13px;
    color: #16a34a;
}

.boq-sample-btn {
    background: none;
    border: none;
    color: #0074D0;
    font-size: 13px;
    cursor: pointer;
}

.boq-sample-btn-icon {
    width: 20px;
    margin-left: 5px;
    margin-bottom: -5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    font-size: 13px;
}

.provider-logo.aws {
    width: 30px;
    height: auto;
    margin-top: 5px;
}

.provider-logo.azure {
    width: 20px;
    height: auto;
}

.provider-logo.gcp {
    width: 25px;
    height: auto;
}

@media (max-width: 768px) {
    .boq-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        align-items: center;
    }

    .boq-title {
        font-size: 31px;
    }

    .boq-right {
        padding: 0px 10px;
        border-radius: 16px;
    }

    .boq-left {
        text-align: center;
    }

    .boq-illustration {
        width: 100%;
        max-width: 100%;
    }

    .boq-provider-box {
        gap: 20px;
    }

    .boq-provider-box label {
        gap: 5px;
    }
}

@media (max-width: 400px) {
    .boq-provider-box {
        gap: 2px;
    }

    .provider-logo {
        width: 10px;
    }

    .boq-provider-box label {
        font-size: 10px;
        gap: 5px;
    }
}

/*=====*/

.boq-howitworks {
    padding: 20px 0px;
    max-width: 1150px;
    margin: 0 auto;
}

.boq-howitworks-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 60px;
    margin-top: 0px;
}

.boq-howitworks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
    max-width: 1280px;
    margin: 0 auto;

}

.boq-step {
    display: flex;
    gap: 16px;
    background: transparent;
    align-items: flex-start;
    padding: 10px 24px;
    min-height: 160px;
}

.boq-step:hover {
    background: #f1faff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
}

.boq-step-number {
   width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 4px solid #ccecff;
    color: #0ea5e9;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.boq-step-content h4 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.boq-step-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    max-width: 420px;
}

@media (max-width: 768px) {
    .boq-howitworks-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .boq-howitworks {
        padding: 60px 24px;
    }

    .boq-step-content p {
        max-width: 100%;
    }
}

/*=====*/

.boq-why-section {
    padding: 20px 0px 0px 20px;
    background: #ffffff;
}

.boq-why-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.boq-why-title {
    font-size: 34px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.boq-why-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    max-width: 520px;
    margin-bottom: 26px;
}

.boq-why-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}

.boq-why-list li {
    font-size: 18px;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 14px;
}

.boq-why-right {
    display: flex;
    justify-content: right;
    align-items: end;
    text-align: end;
}

.boq-why-image {
    width: 75%;
}

@media (max-width: 768px) {
    .boq-why-container {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 0px;
    }
}

@media (min-width: 310px) and (max-width: 768px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
}

@media (min-width: 769px) and (max-width: 2100px) {
    .desktop {
        display: block !important;
    }

    .mobile {
        display: none !important;
    }
}

/*========*/
.boq-cta-section {

    padding: 0px 20px 20px 20px;
    background: #f6fbfe;
}

.boq-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    background:
        url("https://n-teleglobalwebsitemedia.s3.ap-south-1.amazonaws.com/New-React-website-images/cta-ban.webp") center center / cover no-repeat;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    overflow: hidden;
    min-height: 600px;
}

.boq-cta-content {
    padding: 30px 5px 30px 60px;
    color: #ffffff;
}

.boq-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 18px;
}

.boq-cta-content p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 5px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.boq-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #0a74c9;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.boq-cta-btn:hover {
    background: #e6f2fb;
}

.boq-cta-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-width: 700px;
    margin-left: -16px;
}

.boq-cta-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .boq-cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .boq-cta-container {
        background:
            url("https://n-teleglobalwebsitemedia.s3.ap-south-1.amazonaws.com/New-React-website-images/cta-ban-m.png") center center / cover no-repeat;
        min-height: 700px;
    }

    .boq-cta-content {
        padding: 10px 5px;
    }

    .boq-cta-image img {
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .boq-cta-section {
        padding: 10px 5px;
    }

    .boq-cta-content h2 {
        font-size: 28px;
    }

    .boq-cta-content {
        padding: 10px 5px;
        text-align: left;
    }

    .boq-cta-content p {
        max-width: 45%;
    }
}

/*======*/

.boq-powered-strip {
    width: 100%;
    height: 46px;
    background: #5cb3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0;
}

.boq-powered-strip a {
    text-decoration: none;
    color: #ffff;
}

.boq-powered-logo {
    width: 22px;
    object-fit: contain;
}

.boq-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.boq-loader-box {
    width: 420px;
    text-align: center;
    color: #ffffff;
}

.boq-loader-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.boq-progress-bar {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

#boq-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4fa3e3, #2563eb);
    transition: width 0.4s ease;
}

.boq-loader-percent {
    margin-top: 12px;
    font-size: 14px;
    color: #cbd5f5;
}