/* =========================================================
   BBSR SERVICES
   MACHINE INSTALLATION SUPPORT
========================================================= */

.machine-install-page {
    width: 100%;
    padding: 30px 0 60px;
    background: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
}

.machine-install-container {
    width: 1120px;
    max-width: 94%;
    margin: 0 auto;
}


/* =========================================================
   HERO SECTION
========================================================= */

.machine-install-hero {
    position: relative;
    overflow: hidden;

    margin-bottom: 42px;
    padding: 60px 45px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #3c3158 0%,
            #63518a 52%,
            #29203e 100%
        );

    box-shadow:
        0 10px 30px rgba(60,49,88,.20);
}

.machine-install-hero:before {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    right: -210px;
    top: -280px;

    border: 65px solid rgba(255,255,255,.05);

    border-radius: 50%;
}

.machine-install-hero:after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: 80px;
    bottom: -215px;

    background: rgba(255,255,255,.035);

    border-radius: 50%;
}

.machine-install-hero-content {
    position: relative;
    z-index: 2;

    max-width: 930px;
}

.machine-install-label {
    display: inline-block;

    margin-bottom: 15px;
    padding: 7px 15px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
}

.machine-install-hero h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 40px;
    line-height: 1.25;

    font-weight: 700;
}

.machine-install-hero-text {
    max-width: 900px;

    margin: 0 0 14px;

    color: rgba(255,255,255,.95);

    font-size: 16px;
    line-height: 29px;
}


/* =========================================================
   BUTTONS
========================================================= */

.machine-install-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 23px;
}

.machine-install-btn {
    display: inline-block;

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all .25s ease;
}

.machine-install-btn i {
    margin-right: 6px;
}

.machine-install-btn-apply {
    background: #d39a3b;
    color: #ffffff !important;
}

.machine-install-btn-apply:hover {
    background: #b97e28;
}

.machine-install-btn-consult,
.machine-install-btn-call {
    background: #ffffff;
    color: #3c3158 !important;
}

.machine-install-btn-consult:hover,
.machine-install-btn-call:hover {
    background: #eeeeee;
}

.machine-install-btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
}

.machine-install-btn-whatsapp:hover {
    background: #1ca951;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.machine-install-section {
    margin-bottom: 44px;
}

.machine-install-section h2 {
    margin: 0 0 17px;

    padding-bottom: 10px;

    border-bottom: 1px solid #e0dce8;

    color: #3c3158;

    font-size: 27px;
    line-height: 36px;

    font-weight: 600;
}

.machine-install-section h3 {
    color: #63518a;

    font-size: 17px;
    line-height: 25px;

    font-weight: 600;
}

.machine-install-section p {
    margin: 0 0 15px;

    color: #555555;

    font-size: 15px;
    line-height: 29px;

    text-align: justify;
}

.machine-install-section a {
    color: #63518a;

    font-weight: 600;

    text-decoration: none;
}

.machine-install-section a:hover {
    color: #3c3158;

    text-decoration: underline;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.machine-install-highlight {
    margin: 25px 0;

    padding: 23px 25px;

    background: #f6f3fa;

    border-left: 4px solid #63518a;

    border-radius: 6px;
}

.machine-install-highlight h3 {
    margin-top: 0;
    margin-bottom: 9px;
}

.machine-install-highlight p {
    margin-bottom: 0;
}


/* =========================================================
   CARD GRID
========================================================= */

.machine-install-card-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.machine-install-card {
    min-height: 165px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2dfea;

    border-radius: 7px;

    transition: all .25s ease;
}

.machine-install-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 7px 18px rgba(60,49,88,.09);
}

.machine-install-card span {
    color: #d39a3b;

    font-size: 11px;

    font-weight: 700;
}

.machine-install-card h3 {
    margin: 7px 0 9px;
}

.machine-install-card p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   INSTALLATION PROCESS
========================================================= */

.machine-install-process {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 16px;

    margin-top: 25px;
}

.machine-install-process-step {
    padding: 21px;

    background: #f8f7fb;

    border: 1px solid #e2dfea;

    border-radius: 7px;
}

.machine-install-process-step span {
    display: block;

    margin-bottom: 7px;

    color: #d39a3b;

    font-size: 11px;

    font-weight: 700;
}

.machine-install-process-step h3 {
    margin: 0 0 8px;
}

.machine-install-process-step p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   MACHINE TYPES
========================================================= */

.machine-type-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.machine-type-grid > div {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2dfea;

    border-radius: 7px;
}

.machine-type-grid h3 {
    margin-top: 0;
}

.machine-type-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   MACHINE + BUILDING
========================================================= */

.machine-building-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.machine-building-grid > div {
    padding: 22px;

    background: #f7f5fa;

    border: 1px solid #e2dfea;

    border-radius: 7px;
}

.machine-building-grid h3 {
    margin-top: 0;
}

.machine-building-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   MACHINERY PLANNING
========================================================= */

.machine-planning-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.machine-planning-grid > div {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2dfea;

    border-radius: 7px;
}

.machine-planning-grid h3 {
    margin-top: 0;
}

.machine-planning-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   FOUNDATION
========================================================= */

.foundation-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 16px;

    margin-top: 25px;
}

.foundation-grid > div {
    padding: 21px;

    background: #f9f7f3;

    border: 1px solid #e8dfcf;

    border-radius: 7px;
}

.foundation-grid h3 {
    margin-top: 0;

    color: #765b2d;
}

.foundation-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   UTILITY
========================================================= */

.utility-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.utility-grid > div {
    padding: 22px;

    background: #f7f9fb;

    border: 1px solid #dfe5ea;

    border-radius: 7px;
}

.utility-grid h3 {
    margin-top: 0;
}

.utility-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   SAFETY
========================================================= */

.machine-safety-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.machine-safety-grid > div {
    padding: 22px;

    background: #fffaf2;

    border: 1px solid #eadfc9;

    border-radius: 7px;
}

.machine-safety-grid h3 {
    margin-top: 0;

    color: #765824;
}

.machine-safety-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   ODisha FACTORY APPROVAL
========================================================= */

.machine-install-approval {
    padding: 32px;

    background: #f5f2f9;

    border: 1px solid #e0d9eb;

    border-radius: 10px;
}

.machine-install-inline-link {
    display: inline-flex !important;

    align-items: center;

    gap: 8px;

    margin-top: 5px;

    padding: 10px 15px;

    background: #ebe6f3;

    border: 1px solid #d8cfe5;

    border-radius: 5px;

    color: #3c3158 !important;

    font-weight: 600;

    text-decoration: none !important;
}

.machine-install-inline-link:hover {
    background: #63518a;

    color: #ffffff !important;
}


/* =========================================================
   COMMISSIONING
========================================================= */

.commissioning-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.commissioning-grid > div {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2dfea;

    border-radius: 7px;
}

.commissioning-grid span {
    color: #d39a3b;

    font-size: 11px;

    font-weight: 700;
}

.commissioning-grid h3 {
    margin: 7px 0 8px;
}

.commissioning-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   DOCUMENTS
========================================================= */

.machine-document-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.machine-document-grid > div {
    padding: 22px;

    background: #f8f7fb;

    border: 1px solid #e2dfea;

    border-radius: 7px;
}

.machine-document-grid span {
    color: #d39a3b;

    font-size: 11px;

    font-weight: 700;
}

.machine-document-grid h3 {
    margin: 7px 0 8px;
}

.machine-document-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   INDUSTRY
========================================================= */

.machine-industry-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 16px;

    margin-top: 25px;
}

.machine-industry-grid > div {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #e2dfea;

    border-radius: 7px;
}

.machine-industry-grid h3 {
    margin-top: 0;
}

.machine-industry-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 23px;
}


/* =========================================================
   CASE STUDIES
========================================================= */

.machine-install-case-study {
    margin: 42px 0 32px;

    padding: 40px 30px;

    background: #f5f2f9;

    border: 1px solid #e0d9eb;

    border-radius: 10px;

    text-align: center;
}

.machine-install-case-inner {
    max-width: 850px;

    margin: 0 auto;
}

.machine-install-case-study span {
    display: inline-block;

    margin-bottom: 9px;

    color: #63518a;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}

.machine-install-case-study h2 {
    margin: 0 0 13px;

    color: #3c3158;

    font-size: 28px;

    line-height: 36px;
}

.machine-install-case-study p {
    margin: 0 0 21px;

    color: #555555;

    font-size: 14px;

    line-height: 26px;

    text-align: center;
}

.machine-install-case-btn {
    display: inline-block;

    padding: 12px 23px;

    background: #3c3158;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none !important;
}

.machine-install-case-btn:hover {
    background: #63518a;
}

.machine-install-case-btn i {
    margin-right: 6px;
}


/* =========================================================
   RELATED SERVICES
========================================================= */

.machine-install-related {
    margin: 42px 0 35px;

    padding: 32px;

    background: #f8f7fb;

    border: 1px solid #e2dfea;

    border-radius: 10px;
}

.machine-install-related h2 {
    margin: 0 0 12px;

    color: #3c3158;

    font-size: 26px;

    line-height: 35px;

    font-weight: 600;
}

.machine-install-related > p {
    margin: 0 0 24px;

    color: #555555;

    font-size: 14px;

    line-height: 26px;
}

.machine-install-related-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px 16px;
}

.machine-install-related-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 52px;

    padding: 13px 17px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e2dfea;

    border-radius: 6px;

    color: #3c3158 !important;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all .25s ease;
}

.machine-install-related-link span {
    padding-right: 12px;
}

.machine-install-related-link i {
    flex-shrink: 0;

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eeeaf4;

    border-radius: 50%;

    color: #63518a;

    font-size: 13px;

    transition: all .25s ease;
}

.machine-install-related-link:hover {
    background: #f2eff7;

    border-color: #63518a;

    color: #63518a !important;

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(60,49,88,.08);
}

.machine-install-related-link:hover i {
    background: #63518a;

    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   FAQ
========================================================= */

.machine-install-faq {
    margin-bottom: 14px;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid #e2dfea;

    border-radius: 6px;
}

.machine-install-faq h3 {
    margin: 0 0 8px;
}

.machine-install-faq p {
    margin: 0;

    font-size: 14px;

    line-height: 26px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.machine-install-final-cta {
    margin: 40px 0;

    padding: 43px 30px;

    background:
        linear-gradient(
            135deg,
            #3c3158,
            #63518a
        );

    border-radius: 10px;

    text-align: center;
}

.machine-install-final-cta h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 29px;

    line-height: 38px;
}

.machine-install-final-cta p {
    max-width: 850px;

    margin: 0 auto 22px;

    color: rgba(255,255,255,.94);

    font-size: 15px;

    line-height: 28px;

    text-align: center;
}


/* =========================================================
   ALL SERVICES + BACK TO TOP
========================================================= */

.service-page-navigation {
    display: flex;

    justify-content: center;

    align-items: stretch;

    flex-wrap: wrap;

    gap: 16px;

    margin: 38px 0 30px;
}

.service-nav-btn {
    position: relative;

    display: flex;

    align-items: center;

    width: 230px;

    min-height: 58px;

    padding: 0 14px;

    box-sizing: border-box;

    border-radius: 8px;

    text-decoration: none !important;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.service-nav-icon {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 12px;

    border-radius: 7px;

    flex-shrink: 0;
}

.service-nav-text {
    flex: 1;

    font-size: 14px;

    line-height: 20px;

    font-weight: 600;

    text-align: left;
}

.service-nav-arrow {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    flex-shrink: 0;

    transition: all .25s ease;
}


/* ALL SERVICES */

.service-all-btn {
    background: #3c3158;

    border: 1px solid #3c3158;

    color: #ffffff !important;

    box-shadow:
        0 5px 15px rgba(60,49,88,.10);
}

.service-all-btn .service-nav-icon {
    background: rgba(255,255,255,.12);
}

.service-all-btn .service-nav-arrow {
    background: rgba(255,255,255,.10);
}

.service-all-btn:hover {
    background: #63518a;

    border-color: #63518a;

    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 9px 22px rgba(60,49,88,.18);
}

.service-all-btn:hover .service-nav-arrow {
    background: #ffffff;

    color: #63518a;

    transform: translateX(3px);
}


/* BACK TO TOP */

.service-top-btn {
    background: #ffffff;

    border: 1px solid #ddd8e5;

    color: #3c3158 !important;

    box-shadow:
        0 4px 13px rgba(60,49,88,.06);
}

.service-top-btn .service-nav-icon,
.service-top-btn .service-nav-arrow {
    background: #eeeaf4;

    color: #63518a;
}

.service-top-btn:hover {
    background: #f7f4fa;

    border-color: #63518a;

    color: #63518a !important;

    transform: translateY(-3px);

    box-shadow:
        0 9px 22px rgba(60,49,88,.12);
}

.service-top-btn:hover .service-nav-icon,
.service-top-btn:hover .service-nav-arrow {
    background: #63518a;

    color: #ffffff;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.machine-install-disclaimer {
    margin: 28px 0;

    padding: 19px 21px;

    background: #fafafa;

    border: 1px solid #e2e2e2;

    border-radius: 6px;
}

.machine-install-disclaimer strong {
    color: #333333;

    font-size: 14px;
}

.machine-install-disclaimer p {
    margin: 7px 0 0;

    color: #666666;

    font-size: 12px;

    line-height: 22px;
}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .machine-install-page {
        padding: 20px 8px 40px;
    }

    .machine-install-container {
        max-width: 100%;
    }

    .machine-install-hero {
        padding: 33px 20px;

        border-radius: 8px;
    }

    .machine-install-hero h1 {
        font-size: 28px;

        line-height: 37px;
    }

    .machine-install-hero-text {
        font-size: 14px;

        line-height: 25px;

        text-align: justify;
    }

    .machine-install-buttons {
        display: block;
    }

    .machine-install-btn {
        display: block;

        width: 100%;

        margin-bottom: 9px;

        box-sizing: border-box;

        text-align: center;
    }

    .machine-install-card-grid,
    .machine-install-process,
    .machine-type-grid,
    .machine-building-grid,
    .machine-planning-grid,
    .foundation-grid,
    .utility-grid,
    .machine-safety-grid,
    .commissioning-grid,
    .machine-document-grid,
    .machine-industry-grid {
        display: block;
    }

    .machine-install-card,
    .machine-install-process-step,
    .machine-type-grid > div,
    .machine-building-grid > div,
    .machine-planning-grid > div,
    .foundation-grid > div,
    .utility-grid > div,
    .machine-safety-grid > div,
    .commissioning-grid > div,
    .machine-document-grid > div,
    .machine-industry-grid > div {
        margin-bottom: 14px;
    }

    .machine-install-section h2 {
        font-size: 22px;

        line-height: 31px;
    }

    .machine-install-section p {
        font-size: 14px;

        line-height: 26px;
    }

    .machine-install-approval,
    .machine-install-related {
        padding: 24px 18px;
    }

    .machine-install-related-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .service-page-navigation {
        display: flex;

        flex-direction: column;

        gap: 10px;

        margin: 30px 0 25px;
    }

    .service-nav-btn {
        width: 100%;

        min-height: 56px;
    }

    .service-nav-text {
        font-size: 13px;
    }

    .machine-install-case-study {
        padding: 30px 18px;
    }

    .machine-install-case-study h2 {
        font-size: 23px;

        line-height: 31px;
    }

    .machine-install-final-cta {
        padding: 30px 18px;
    }

    .machine-install-final-cta h2 {
        font-size: 23px;

        line-height: 31px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media only screen
       and (min-width: 768px)
       and (max-width: 991px) {

    .machine-install-container {
        width: 95%;

        max-width: 95%;
    }

    .machine-install-hero {
        padding: 44px 30px;
    }

    .machine-install-hero h1 {
        font-size: 34px;
    }

    .machine-install-card-grid,
    .machine-install-process,
    .machine-type-grid,
    .machine-building-grid,
    .machine-planning-grid,
    .foundation-grid,
    .utility-grid,
    .machine-safety-grid,
    .commissioning-grid,
    .machine-document-grid,
    .machine-industry-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media only screen and (min-width: 1200px) {

    .machine-install-container {
        width: 1120px;
    }

}