/* --- START HOMEPAGE --- */
.sectionone {
    position: relative;
    background-image: url('/img/homepage.png');
    background-size: cover;
    background-position: center;
    padding: 3rem;
    padding-top: 0.5rem !important;
}

.sectionone>div:first-child {
    position: relative;
    width: 70%;
}

@media (max-width: 992px) {
    .sectionone .pagetitle {
        font-size: 42px !important;
    }
}

@media (max-width: 768px) {
    .sectionone>div:first-child {
        width: 100%;
    }

    .sectionone {
        padding: 2rem;
    }

    .sectionone .pagetitle {
        font-size: 38px !important;
    }

    .search-box {
        display: flex;
        width: 100%;
        max-width: 100% !important;
    }

    .search-result {
        max-width: 100% !important;
        width: 100% !important;
    }

    .sectiontwo .text-content,
    .sectiontwo .image-content {
        flex: 1 1 100%;
        width: 100% !important;
    }

    .sectiontwo .text-content {
        padding: 2rem !important;
    }

    .sectiontwo .image-content img {
        max-width: 80%;
        margin: 0 auto;
        min-inline-size: -webkit-fill-available;
    }

}

@media (max-width: 480px) {
    .sectionone {
        padding: 1.5rem 1rem;
    }

    .sectionone .pagetitle {
        font-size: 32px !important;
    }

    .sectiontwo {
        flex-direction: column;
        text-align: center;
    }

    .sectiontwo .text-content,
    .sectiontwo .image-content {
        flex: 1 1 100%;
        width: 100% !important;
    }

    .sectiontwo .text-content {
        padding: 1.5rem !important;
    }

    .sectiontwo .image-content img {
        max-width: 80%;
        margin: 0 auto;
        min-inline-size: -webkit-fill-available;
    }
}

.sectionone .info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    text-align: justify;
}

.sectionone .icon img {
    max-width: 20px;
}

.sectionone .pagetitle {
    font-size: 50px;
}

.search-box {
    z-index: 10;
    display: flex;
    width: 100%;
    max-width: 70%;
    border-radius: 25px;
    position: relative;
}

.search-box input {
    z-index: 11;
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-box button {
    z-index: 10;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14pt;
}

@media (max-width: 400px) {
    .search-box {
        flex-direction: column;
        background-color: transparent !important;
    }

    .search-box input {
        border-radius: 25px;
        border-right: 1px solid #ccc;
        margin-bottom: 8px;
    }

    .search-box button {
        border-radius: 25px;
        border-left: 1px solid #ccc;
    }
}


/* sectiontwo */
.sectiontwo {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sectiontwo .text-content {
    flex: 1 1;
    padding: 3rem;
    text-align: justify;
    font-size: 1rem;
}

.sectiontwo .image-content {
    text-align: right;
    width: 400px;
}

.sectiontwo .image-content img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* sectionthree */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    width: 150px;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background-color: white;
    color: #003960;
    font-weight: bold;
    font-size: large;
    transition: background-color 0.3s;
}

.filter-btn:hover {
    background-color: #005f99;
    color: white;
}

.filter-btn.active {
    background-color: #003960;
    color: white;
}

#allresult div.resultitem {
    border-bottom: 1px solid #004978;
    padding: 0.2rem;
    text-align: left;
}

.resultitem:hover {
    background: #c7dcfa !important;
}

.active-page {
    background-color: #004978 !important;
    color: white !important;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
}

#paginationControls button {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
}

#paginationControls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .filter-buttons {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
    }

    #allresult {
        gap: 10px;
        display: flex;
        font-size: 1rem;
        flex-direction: column;
    }

    #allresult>div {
        width: 100% !important;
        display: block !important;
        margin-left: 0 !important;
    }
}


/* searchbar */
.search-wrapper {
    position: relative;
    max-width: 100%;
}

.search-result {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 70%;
    background: white;
    border-radius: 10px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-item:hover {
    background: #f0f0f0;
}

.search-item:last-child {
    border-bottom: none;
}

.arrow {
    padding-right: 10px;
    float: right;
}

#seo-index {
    position: absolute;
    left: -9999px;
    height: 1px;
    overflow: hidden;
}

/* --- END HOMEPAGE --- */

/* --- START BUSINESS INSIGHT --- */
.white-space-pre-line {
    white-space: pre-line;
}

.insightone {
    display: flex;
    align-items: stretch;
}

.insightone .text-content {
    flex: 1;
    z-index: 2;
    position: relative;
    background: url(/img/businessInsightHeader.png) right center / cover no-repeat;
}

#getstart {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14pt;
    font-weight: bold;
}

.divone {
    position: absolute;
}

.infoDiv {
    background: white;
    color: #004978;
    border-radius: 25px;
    font-size: 16px;
}

.insightpad {
    padding: 2rem 10rem;
}

.insightpad2 {
    padding: 2rem 6rem;
}

@media (max-width: 992px) {

    .insightpad,
    .insightpad2 {
        padding: 2rem;
    }

    .max-div,
    .max-div-2 {
        max-width: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        justify-self: center;
    }
}

@media (max-width: 768px) {

    .insightpad,
    .insightpad2 {
        padding: 1.5rem;
    }

    .insightfour-container {
        flex-direction: column;
    }

    .bluefadebg {
        background: linear-gradient(to bottom, #6dc0e2 0%, #8fd0ea 15%, #b5e2f2 35%, #dff2fa 55%, #ffffff 75%, #ffffff 100%) !important;
    }

    .imgfour,
    .learn-btn img {
        justify-self: center;
        width: 380px !important;
    }
}

@media (max-width: 480px) {

    .insightpad,
    .insightpad2 {
        padding: 1rem;
    }

    .insightone .text-content::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.7);
        z-index: -1;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }
}

.infoDiv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.infoDiv .infoitem:last-child {
    grid-column: span 2;
}

.infoitem {
    padding: 0.5rem 0rem;
    padding-right: 2rem;
}

.infoitem div:first-child {
    font-weight: bold;
}

.infoitem .info,
.insightthree .info {
    color: #737373 !important;
    text-align: justify;
}

@media (max-width: 768px) {
    .infoDiv {
        grid-template-columns: 1fr;
    }

    .infoDiv .infoitem:last-child {
        grid-column: span 1;
    }

    .infoitem {
        padding: 0rem;
    }
}

.reporttitle {
    text-align: center;
}

.reportpackage {
    display: flex;
    gap: 25px;
    align-items: stretch;
    justify-self: center;
}

.reportpackage>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    max-width: 550px;
    width: 345px;
}

.reportpackage>div:first-child {
    background: #f5f7fa;
    border: 2px solid #004978;
    color: #004978;
}

.reportpackage>div:last-child {
    background: #0d3f7a;
    color: white;
}

.packagelabel {
    position: absolute;
    top: -27px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14pt;
    background: linear-gradient(90deg, #f7c948, #f7941d);
    color: #003366;
    font-weight: bold;
    padding: 8px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.reportpackage h2 {
    font-size: 55px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 0px;
}

.reportpackage small {
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.strikethrough {
    font-size: 20px;
    padding-top: 30px;
    color: #e5e7eb;
    position: relative;
    display: inline-block;
}

/* slanted line */
.strikethrough::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 70%;
    width: 115%;
    height: 2px;
    background: #e5e7eb;
    transform: rotate(-8deg);
    transform-origin: center;
}

@media (max-width: 400px) {
    .price-row {
        display: block !important;
    }

    .reportpackage .strikethrough {
        padding-top: 0px;
    }

    .strikethrough::after {
        top: 45% !important;
    }
}

.reportpackage>div:last-child h2 {
    color: #f7941d;
}

.insightthree .listInfo {
    flex-grow: 1;
}

.insightthree .info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.insightfour .icon img {
    max-width: 60px;
}

.infodetails div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 0;
}

.reportpackage>div:last-child .infodetails div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cbmbtn {
    margin-top: auto;
    border-radius: 30px;
    padding: 12px;
    font-size: 16pt;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: center;
}

#contactbtn1 {
    background: #004978;
    color: white !important;
}

#contactbtn2 {
    background: #f7941d;
    color: white !important;
}

.cbmbtn:hover {
    opacity: 0.9;
}

.card-light .textone {
    margin-top: 30px;
}

.card-light .texttwo {
    margin-top: 25px;
}

@media (max-width: 768px) {
    .reportpackage {
        flex-direction: column;
    }

    .reportpackage>div:last-child {
        order: -1;
    }

    .reportpackage>div {
        max-width: 100%;
        width: 100%;
    }

    .card-light .textone {
        margin-top: 0px !important;
    }

    .card-light .texttwo {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }
}

/* insightfour */
.insightfour-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.left-section {
    align-self: center;
    text-align: center;
}

.imgfour {
    max-height: 550px;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 12pt;
    text-align: justify;
}

.feature-list {
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-item span {
    align-self: center;
}

.learn-btn {
    width: fit-content;
    align-self: center;
}

.learn-btn img {
    height: auto;
    display: block;
    cursor: pointer;
    max-width: 100%;
    max-height: 100px;
    justify-self: center;
    width: 350px !important;
    border-radius: 32px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.learn-btn img:hover {
    transform: translateY(-0.5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bluefadebg {
    background: linear-gradient(to right,
            #6dc0e2 0%,
            #8fd0ea 15%,
            #b5e2f2 35%,
            #dff2fa 55%,
            #ffffff 75%,
            #ffffff 100%);
}

.insightsix .accordion3 {
    text-align: justify;
}

.insightsix .accordion-header3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0, 64, 133, 0.30);
    padding: clamp(12px, 1vw, 20px) clamp(16px, 3vw, 40px);
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1vw;
}

.accordion-header3 {
    position: relative;
    cursor: pointer;
}

.accordion-content3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 6px;
}

.accordion-header3 img {
    transition: transform 0.3s ease;
}

.accordian-text {
    font-weight: 500;
    font-size: clamp(16px, 1.1vw, 20px);
    color: white;
    margin: 0;
    text-align: left;
}

.accordian-icon {
    position: absolute;
    width: clamp(32px, 5vw, 60px);
    height: clamp(32px, 5vw, 60px);
    right: -1rem;
    border-radius: 50%;
    background-color: #003f85;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.2);
}

.accordian-icon img {
    width: clamp(14px, 2vw, 24px);
}

.accordian-text2 {
    margin: 1vw 3.3vw;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
    color: black;
}

@media (max-width: 768px) {
    .accordion-header3 {
        padding: 12px 16px;
    }

    .accordian-text {
        font-size: 16px;
        width: 90%;
    }

    .accordian-text2 {
        font-size: 14px;
        margin: 5px 16px;
    }

    .accordian-icon {
        right: 0.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

.insightlogo {
    text-align: center;
}

.insightlogo img {
    max-width: 100%;
}

.max-div {
    width: 70%;
    max-width: 70%;
    min-width: 666px;
    justify-self: center;
}

.max-div-2 {
    width: 80%;
    max-width: 80%;
    min-width: 666px;
    justify-self: center;
}

.insightfive .formdiv {
    background: white;
    border-radius: 15px;
    width: 700px;
    max-width: 100%;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insightfive .form-title {
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.insightfive .icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insightfive .icon-title h5 {
    margin-top: auto;
}

.insightfive .form-group:not(.customer-type) {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.customer-type {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 14px;
    transition: all 0.2s ease;
    user-select: none;
}

.insightfive .form-group input,
.insightfive .form-group textarea,
.insightfive .form-group select {
    padding: 7px 15px 6px;
    border-radius: 4px;
    border: 2px solid #d3d6d7;
    outline: none;
    transition: 0.3s;
    background: #f7f7f7;
    height: auto;
    min-height: 38px;
}

.insightfive .form-group input:focus,
.insightfive .form-group textarea:focus,
.insightfive .form-group select:focus {
    border-color: #237ACF;
}

.insightfive textarea {
    overflow: hidden;
    resize: none;
}

.upload-box {
    border: 2px dashed #d3d6d7;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.upload-box img {
    max-width: 20px;
    width: 20px;
}

.upload-box span {
    margin-left: 5px;
    margin-right: 5px;
}

.upload-text {
    color: #4c4f50;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.choosefile {
    border: 2px solid #d3d6d7;
    border-radius: 4px;
    padding: 10px;
    width: 125px;
}

.upload-box:hover .choosefile {
    transition: 0.2s ease all;
    border-color: #3a8dde;
    color: #3a8dde;
}

.upload-box:hover .filesvgIcon {
    fill: #3a8dde !important;
}

.filesvgIcon {
    width: 20px;
    fill: #6e8293;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary {
    background: #3A8DDE;
    color: white;
    border: none;
    padding: 11px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 200px;
}

.btn-primary:hover {
    background: #237ACF;
}

.btn-secondary {
    background: #fff;
    border: 1px solid #a9b0b0;
    color: #a9b0b0;
    padding: 11px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 200px;
}

.btn-secondary:hover {
    border-color: #3A8DDE;
    color: #3A8DDE;
}

.file-list {
    margin-top: 10px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    border: 1px solid #d3d6d7;
    border-radius: 4px;
    padding: 6px 10px;
    margin-bottom: 5px;
    font-size: 14px;
}

.file-remove {
    cursor: pointer;
    color: #999;
    font-weight: bold;
    margin-left: 10px;
}

.file-remove:hover {
    color: red;
}

.new-contact-wrapper {
    gap: 1rem;
    /* padding: 1rem; */
    border-radius: 15px;
    background: #eaf0f5;
    display: flex;
    text-align: justify;
    align-items: stretch;
    position: relative;
}

.contact-wrapper {
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background: #eaf0f5;
    display: flex;
    text-align: justify;
    align-items: stretch;
    position: relative;
}

.contact-wrapper>*:not(.blueback) {
    position: relative;
    margin-left: auto;
    z-index: 1;
}

.blueback {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #004085;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    z-index: 0;
}

.contactDesc {
    width: 400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-self: center;
    margin-bottom: auto;
    margin-top: 5rem;
}

.contactDesc img {
    max-width: 100%;
    width: 350px;
    height: auto;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 0rem !important;
    }

    .new-contact-wrapper {
        flex-direction: column;
        padding: 0rem !important;
    }

    .contactimg img {
        max-width: 100% !important;
    }

    .contactDesc {
        text-align: center;
        margin-left: 0px !important;
    }

    .contactDesc img {
        max-width: 80%;
        margin: 20px auto 0;
    }
}

.insightfive .form-group.error input,
.insightfive .form-group.error textarea,
.insightfive .form-group.error select {
    border-color: #E84954;
}

.insightfive .error-message {
    color: #E84954;
    margin-top: 5px;
}

.contactimg {
    align-self: center;
}

.contactimg img {
    width: 320px;
    height: auto;
}

#contactUs {
    scroll-margin-top: 110px; 
}

.contactusform-btn {
    width: 100%;
    text-align: center;
}

.submitcontactbtn {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14pt;
    font-weight: bold;
}

/* --- END BUSINESS INSIGHT --- */