@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    background: linear-gradient(178.69deg, #FFFFFF 1.11%, #A3A3D0 98.89%);
    font-family: 'Poppins', sans-serif;
    color: #000000;
    margin: 0;
    padding: 0;
    background-position: center center;
    background-size: cover;
    line-height: 1.6;
    background-repeat: no-repeat;
}


a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

/*
|--------------------------------------------------------------------------
| 3. Typography Styles (Headings & Paragraphs)
|--------------------------------------------------------------------------
*/


h1 {
    font-size: 48px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000000;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #000000;
}


p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 15px;
    color: #000000;
}

.d365-cst-button {
    display: inline-block;
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.d365-cst-button:hover {
    background-color: #6164C2;
    color: #fff;
    border-color: #6164C2;

}

/*
|--------------------------------------------------------------------------
| Global Reset & Utilities
|--------------------------------------------------------------------------
*/
.d365-menu-cst-container {
    max-width: 1200px;

    margin: 0 auto;
    padding: 0 15px;

}

ul.d365-menu-cst-main-ul,
ul.d365-menu-cst-dropdown,
ul.d365-menu-cst-sub-dropdown,
ul.d365-menu-cst-sub-sub-dropdown {

    list-style: none;
    margin: 0;
    padding: 0;
}

.d365-menu-cst-no-scroll {
    overflow: hidden;
}

.d365-menu-cst-mega-dropdown li {
    list-style: none;

}

/*
|--------------------------------------------------------------------------
| Header & Sticky Behavior
|--------------------------------------------------------------------------
*/
.d365-menu-cst-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/*
|--------------------------------------------------------------------------
| Top Bar Styling (The #040526 Dark Bar)
|--------------------------------------------------------------------------
*/
.d365-menu-cst-top-bar {
    background-color: #040526;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.d365-menu-cst-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d365-menu-cst-top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.d365-menu-cst-microsoft-logo {
    height: 18px;

    filter: brightness(0) invert(1);

}

/* Hide Top Bar on smaller screens (Tablet/Mobile) */
@media (max-width: 991px) {
    .custm-bootstr-d365 {
        justify-content: center !important;
    }

    .d-displ-block {
        display: none !important;
    }

    .m-displ-block {
        display: block !important;
    }

    .d365-menu-cst-top-bar {
        font-size: 10px;
    }
}

.d-displ-block {
    display: block;
}

.m-displ-block {
    display: none;
}

/*
|--------------------------------------------------------------------------
| Main Navigation Bar Styling (The White Box FIX)
|--------------------------------------------------------------------------
*/
.d365-menu-cst-main-nav {

    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 95%;
    margin: auto;

    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.d365-menu-cst-main-nav-container {
    max-width: none;
    margin: 0;
    padding: 5px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d365-menu-cst-logo img {
    max-height: 42px;

    width: auto;
    vertical-align: text-bottom;
}

/* Desktop Menu Items */
.d365-menu-cst-menu-items {
    display: flex;
    align-items: center;
    flex-grow: 1;

    justify-content: flex-end;

    margin-left: 10px;
}

.d365-menu-cst-main-ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.d365-menu-cst-main-ul>li>a {
    color: black;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.d365-menu-cst-main-ul>li:hover>a {
    color: #6164C2;

}

.d365-menu-cst-dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}


/*
|--------------------------------------------------------------------------
| Social Icons Styling (Desktop)
|--------------------------------------------------------------------------
*/
.d365-menu-cst-social-icons-wrapper {
    display: flex;
    gap: 4px;
    border-right: 1px solid black;
    margin-right: 10px;
    padding-right: 10px;
}

.d365-menu-cst-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50px;

    background-color: #868da0;

    border: 1px solid #eee;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

    transition: background-color 0.3s, border-color 0.3s;
}

.d365-menu-cst-social-icon i {
    font-size: 16px;
    color: white;

    transition: color 0.3s;
}

.d365-menu-cst-social-icon:hover {
    background-color: white;

    border-color: #6164C2;
}

.d365-menu-cst-social-icon:hover i {
    color: #6164C2;

}

/*
|--------------------------------------------------------------------------
| Desktop Dropdowns (Standard - Services, Industries, Vertical Solutions)
|--------------------------------------------------------------------------
*/
.d365-menu-cst-has-dropdown {
    position: relative;
}

.d365-menu-cst-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #6164C2;

    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

.vertical-solutions-scroll>.d365-vrticl-mega-dropdown {
    max-height: 400px;
    overflow-y: auto;
}

.d365-menu-cst-has-dropdown:hover>.d365-menu-cst-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.d365-menu-cst-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: black;

    text-decoration: none;
    font-size: 13px;
}

.d365-menu-cst-dropdown li:hover a {
    background-color: #f6f6f6;

    color: #1f24c1;

}

.d365-menu-cst-has-dropdown:hover a .d365-menu-cst-dropdown-arrow {
    transform: rotate(180deg);
}

/*
|--------------------------------------------------------------------------
| Mega Dropdown Styling (Solutions & Products) - WHITE FIX
|--------------------------------------------------------------------------
*/
.d365-menu-cst-mega-dropdown {
    min-width: 320px;
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    left: 0;
    border-top: 2px solid #6164C2;

    background-color: #fff;

}

.d365-menu-cst-mega-col {
    width: 75%;
    padding: 15px;
    border-right: 1px solid #eee;

}

.d365-menu-cst-mega-col:last-child {
    border-right: none;
}

.d365-menu-cst-mega-title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #6164C2;

    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;

}

.d365-menu-cst-mega-col ul {
    padding: 0;
    margin: 0;
}

.d365-menu-cst-mega-dropdown li a {
    color: black;

    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.d365-menu-cst-mega-dropdown li:last-child a {
    border-bottom: none;
}

.d365-menu-cst-mega-dropdown li:hover a {
    background-color: #f6f6f6;

    color: #1f24c1;

}


/* Sub Dropdown inside Mega Dropdown (for Products/Tech) */
.d365-menu-cst-has-sub-dropdown {
    position: relative;
}

.d365-menu-cst-sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    background-color: #f8f8f8;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #6164C2;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease-in-out;
}

.d365-menu-cst-has-sub-dropdown:hover>.d365-menu-cst-sub-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.d365-menu-cst-sub-dropdown li a {
    padding: 10px 20px;
    color: black;
}

.d365-menu-cst-sub-dropdown li:hover a {
    background-color: #f0f0f0;
    color: #1f24c1;
}

.d365-menu-cst-sub-dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/*
|--------------------------------------------------------------------------
| Number Button Styling (Desktop)
|--------------------------------------------------------------------------
*/
.d365-menu-cst-call-btn {
    display: inline-block;
    background-color: #6f72dd;
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin-left: 20px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.d365-menu-cst-call-btn:hover {
    background-color: #494c9d;

}

/*
|--------------------------------------------------------------------------
| Mobile/Tablet View Overrides (Max-width 991px)
|--------------------------------------------------------------------------
*/
.d365-menu-cst-mobile-menu-toggle {
    display: none;

}

@media (max-width: 991px) {

    /* FIX: Mobile pe white box ko full-width kardo */
    .d365-menu-cst-main-nav {
        position: static;
        transform: none;
        max-width: 100%;
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
    }

    /* FIX: Mobile Nav Container (Logo Left, Hamburger Right) */
    .d365-menu-cst-main-nav-container {

        max-width: 100%;
        padding: 2px 10px;
    }

    /* Hide Desktop elements */
    .d365-menu-cst-menu-items,
    .d365-menu-cst-desktop-social,
    .d365-menu-cst-number-button-desktop {
        display: none;
    }

    /* Show Mobile elements */
    .d365-menu-cst-mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #6164C2;
        cursor: pointer;
        padding: 5px;
    }

    /* Logo should be on the left */
    .d365-menu-cst-logo {
        position: static;
        left: auto;
        transform: none;
        order: 1;

        margin-right: auto;

    }

    /* Hamburger Button should be on the right */
    .d365-menu-cst-mobile-menu-toggle {
        order: 2;

        margin-left: 15px;

    }

    /* Hidden elements on mobile */
    /* .d365-menu-cst-top-bar-content {
        display: none;
    } */

    .d365-menu-cst-mobile-ul {
        padding-left: 20px !important;
    }

    .d365-menu-cst-mobile-overlay-footer .d365-menu-cst-social-icons-wrapper {
        justify-content: flex-start !important;
        margin-right: 0px;
        border-right: none;
    }

    .d365-menu-cst-mobile-overlay-footer {
        text-align: left !important;
    }

    .d365-menu-cst-mobile-overlay-footer .d365-menu-cst-call-btn {
        display: block !important;
        width: 50% !important;
        margin: 0 !important;
        padding: 10px 10px !important;
        margin-left: 0 !important;
        text-align: center;
    }

    .d365-menu-cst-mobile-ul .d365-menu-cst-dropdown li a {
        padding-left: 0px !important;
    }

    .d365-menu-cst-mobile-ul .d365-menu-cst-dropdown {
        margin-left: 0px !important;
    }

}

/*
|--------------------------------------------------------------------------
| Mobile Menu Overlay Styling
|--------------------------------------------------------------------------
*/
.d365-menu-cst-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.d365-menu-cst-mobile-overlay.d365-menu-cst-open {
    visibility: visible;
    opacity: 1;
}

.d365-menu-cst-mobile-menu-content {
    width: 300px;

    max-width: 80%;
    height: 100%;
    background-color: #fff;

    position: absolute;
    right: 0;
    top: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s;
    padding: 20px;
}

.d365-menu-cst-mobile-overlay.d365-menu-cst-open .d365-menu-cst-mobile-menu-content {
    transform: translateX(0);
}

.d365-menu-cst-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.d365-menu-cst-mobile-logo {
    max-height: 42px;
    width: auto;
}

.d365-menu-cst-mobile-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: black;
    cursor: pointer;
}

/* Base Mobile UL Styling */
.d365-menu-cst-mobile-ul li a {
    position: relative;
    display: block;
    padding: 10px 0;
    color: black;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px dashed #eee;
    font-weight: 500;
    padding-right: 25px;

}

.d365-menu-cst-mobile-ul li a:hover {
    color: #6164C2;
}

/* FIX: Ensure all mobile arrows are positioned absolutely for visibility */
.d365-menu-cst-mobile-ul .d365-menu-cst-mobile-arrow,
.d365-menu-cst-mobile-ul .d365-menu-cst-sub-dropdown-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    pointer-events: none;
}


/* Mobile Dropdowns (First Level) */
.d365-menu-cst-mobile-ul .d365-menu-cst-dropdown {
    position: relative;
    box-shadow: none;
    border: none;
    border-top: 1px solid #eee;
    padding: 5px 0 5px 10px;
    border-left: 2px solid #6164C2;
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
    background-color: #f9f9f9;

}

.d365-menu-cst-mobile-ul .d365-menu-cst-dropdown li a {
    padding: 8px 0;
    font-size: 14px;
    border: none;
    padding-left: 10px;
    color: black;
}

.d365-menu-cst-mobile-ul .d365-menu-cst-dropdown li a:hover {
    background-color: #f4f4f4;
    color: #6164C2;
}

/* Mobile Sub-Dropdowns (Second Level - for Mega Menu items like D365) - WHITE FIX */
.d365-menu-cst-mobile-mega-list .d365-menu-cst-has-sub-dropdown>a {
    font-weight: 500;
    color: black;
    border-bottom: 1px solid #ddd;
    padding-left: 0;
    padding-right: 25px;
}

.d365-menu-cst-mobile-mega-list .d365-menu-cst-sub-dropdown {
    position: relative;
    left: 0;
    min-width: unset;
    border: none;
    border-left: 1px solid #6164C2;

    margin-left: 0px;
    padding: 5px 0 5px 10px;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
    background-color: #f9f9f9;

}

.d365-menu-cst-mobile-mega-list .d365-menu-cst-sub-dropdown li a {
    font-size: 14px;
    color: black;
    padding: 5px 10px;
    border-bottom: none;
}

.d365-menu-cst-mobile-mega-list .d365-menu-cst-sub-dropdown li a:hover {
    color: #6164C2;
    background-color: #f0f0f0;
}


/* Mobile Footer: Social Icons and Button */
.d365-menu-cst-mobile-overlay-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    margin-top: 30px;
}

.d365-menu-cst-mobile-overlay-footer .d365-menu-cst-social-icons-wrapper {
    justify-content: center;
    margin-bottom: 15px;
    gap: 10px;
}

.d365-menu-cst-mobile-overlay-footer .d365-menu-cst-call-btn {
    display: block;
    width: 100%;
    margin: 0;
    padding: 12px 20px;
}

/*
|--------------------------------------------------------------------------
| Tablet Specific Overrides (991px se badi, 1200px se choti screens ke liye)
|--------------------------------------------------------------------------
*/
@media (min-width: 992px) and (max-width: 1200px) {
    .d365-menu-cst-main-ul {
        gap: 5px;

    }

    .d365-menu-cst-main-ul>li>a {
        font-size: 12px;
        padding: 10px 0;
    }

    .d365-menu-cst-call-btn {
        padding: 8px 15px;
        font-size: 14px;
        margin-left: 10px;
    }

    .d365-header-cst-content-wrapper {
        padding-top: 15% !important;
    }
}


/* |--------------------------------------------------------------------------
| Custom Mega Dropdown for Vertical Accelerators (d365-vrticl-mega-)
|--------------------------------------------------------------------------
*/

/* Desktop Styles */
.d365-vrticl-mega-dropdown {
    position: absolute;
    top: 100%;

    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 800px;

    max-width: 95vw;
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);

    border-top: 2px solid #6164C2;

    visibility: hidden;
    opacity: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

/* Inherit hover visibility from parent .d365-menu-cst-has-dropdown:hover (d365-vrticl-mega-main-li has this parent class) */
.d365-menu-cst-has-dropdown:hover>.d365-vrticl-mega-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);

}

.d365-vrticl-mega-container {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    gap: 30px;

}

.d365-vrticl-mega-col {
    width: calc(100% / 3);

    padding-right: 20px;
    border-right: 1px solid #eee;

}

.d365-vrticl-mega-col:last-child {
    border-right: none;
    padding-right: 0;
}

.d365-vrticl-mega-title {
    font-size: 14px;
    font-weight: 600;
    color: #494c9d;
    margin-bottom: 8px;
    padding-top: 5px;
    border-top: 1px solid #f0f0f0;
    display: block;
    margin-top: 0;
}

.d365-vrticl-mega-title-mt {
    margin-top: 20px;

}

.d365-vrticl-mega-list {
    margin-bottom: 15px;
    padding-left: 0;
}

.d365-vrticl-mega-list li {
    list-style: none;
}

.d365-vrticl-mega-list li a {
    display: block;
    padding: 6px 0;
    color: black;

    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.d365-vrticl-mega-list li a:hover {
    color: #1f24c1;

}

/* Mobile Overrides (To make the Mega Menu work inside the Mobile Overlay) */
@media (max-width: 991px) {
    .d365-menu-cst-has-dropdown:hover>.d365-vrticl-mega-dropdown {
        transform: translateX(0%) translateY(0);
    }

    .d365-menu-cst-mega-dropdown {
        min-width: fit-content;
    }

    .d365-vrticl-mega-dropdown {
        border-radius: 0px;
    }

    /* Mega Menu ko mobile overlay mein standard dropdown ki tarah dikhana */
    .d365-vrticl-mega-dropdown {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;


        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        border-top: 1px solid #eee;


        display: none;
        padding: 0;
        margin-left: 10px;

        border-left: 2px solid #6164C2;

    }

    /* Content wrapper ko vertical stack karna */
    .d365-vrticl-mega-container {
        flex-direction: column;
        padding: 10px;
        gap: 0;
    }

    .d365-vrticl-mega-col {
        width: 100%;
        padding: 0;
        border-right: none;

        border-bottom: 1px dashed #ddd;

    }

    .d365-vrticl-mega-col:last-child {
        border-bottom: none;
    }

    .d365-vrticl-mega-title {
        font-size: 15px;
        padding: 10px 0 5px 0;
        margin-bottom: 5px;
        border-bottom: none;
    }

    .d365-vrticl-mega-list {
        margin-bottom: 10px;
    }

    .d365-vrticl-mega-list li a {
        font-size: 14px;
        padding: 6px 0 6px 10px;
    }
}

.cst-clor-any li a {
    color: #6164C2;
}




/* Header section */
/*
|--------------------------------------------------------------------------
| Hero Header Section Styling (d365-header-cst-)
|--------------------------------------------------------------------------
*/
.d365-header-cst-hero-section {
    background: url(../images/home-page/home-page-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.d365-header-cst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-header-cst-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
    position: relative;
    padding-top: 15%;
    padding-bottom: 1%;
}

.d365-header-cst-left-content {
    flex: 1;
    min-width: 300px;
    z-index: 2;
}

.d365-header-cst-title {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
    color: white;
}

.d365-header-cst-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 45px;
    color: white;
}

.d365-header-cst-button {

    margin-bottom: 20px;

}

.d365-header-cst-logos {
    display: flex;
    flex-direction: column;

    gap: 10px;

}

.d365-header-cst-microsoft-logos {
    display: flex;
    align-items: center;
    gap: 20px;

}

.d365-header-cst-company-logo {
    max-width: 120px;

    height: auto;
    opacity: 0.8;

}

.d365-header-cst-right-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-width: 400px;
    position: relative;
    padding-top: 42%;
    z-index: 1;
    margin-right: -15px;
}

.d365-header-cst-hero-image {
    max-width: 80%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 500px;
    object-fit: contain;
}

/* Responsive Styles for Hero Header */
@media (max-width: 991px) {
    .d365-header-cst-content-wrapper {
        flex-direction: column;

        align-items: center;

        text-align: center;

        padding-bottom: 0;

    }

    .d365-header-cst-left-content {
        padding-bottom: 20px;

        order: 2;

        width: 100%;
        min-width: unset;
    }

    .d365-header-cst-title {
        font-size: 38px;

        margin-bottom: 15px;
    }

    .d365-header-cst-description {
        font-size: 15px;

        margin-bottom: 20px;
    }

    .d365-header-cst-microsoft-logos {
        justify-content: center;

    }

    .d365-header-cst-right-image {
        order: 1;

        width: 100%;
        min-width: unset;
        justify-content: center;
        margin-right: 0;

        padding-bottom: 0;

        position: relative;

        height: 300px;

        padding-top: 0;
    }

    .d365-header-cst-hero-image {
        position: relative;

        bottom: 0;
        right: auto;

        max-width: 90%;

        max-height: 100%;
        object-fit: contain;
    }

    .d365-menu-cst-logo img {
        max-height: 33px;
    }
}

@media (max-width: 767px) {
    .d365-header-cst-title {
        font-size: 20px;
        margin-top: 20px;
    }

    .d365-header-cst-description {
        font-size: 14px;
    }

    .d365-header-cst-hero-image {
        max-width: 100%;
        max-height: 250px;

    }

    .d365-header-cst-right-image {
        height: 250px;
        padding-top: 3%;
    }
}



/* Top rated style */
.custm-bootstr-d365 {
    justify-content: flex-start;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    margin-top: 5px;
    margin-left: 0%;
}

.text-warning-cstm {
    opacity: 1;
    color: rgba(255, 193, 7);
    font-weight: 600;
    margin-left: 5px;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 2px;
}

.stars-outer-st-cstms {
    display: inline-block;
    font-size: 24px;
    position: relative;
    color: #ccc;
    margin-left: 5px;
}

.stars-outer-st-cstms::before {
    content: "★★★★★";
    font-size: 24px;
}

.stars-inner-st-cstms {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    color: #ffc107;
}

.stars-inner-st-cstms::before {
    content: "★★★★★";
    font-size: 24px;
}

.top-rted-care-txt {
    margin-left: 5px;
    font-size: 15px;
    margin-top: 2px;
    font-weight: 400;
    margin-bottom: 0;
    color: white;
}

/* Top rated style End */
/* Header section End */
/*
|--------------------------------------------------------------------------
| Custom Popup/Modal Styles (UPDATED FOR DESIGN AND RESPONSIVENESS)
|--------------------------------------------------------------------------
*/

/* 1. Full Screen Overlay */
.d365-cst-popup-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    overflow-y: auto;
}

.d365-cst-popup-form-overlay.d365-cst-popup-form-open {
    visibility: visible;
    opacity: 1;
}

/* 2. Page Scroll Block (Body Class) */
body.d365-cst-no-scroll {
    overflow: hidden;
}

/* 3. Form Content Wrapper (White Box) */
.d365-cst-popup-form-content {
    background-color: #fff;
    padding: 30px 40px;

    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 20px auto;

}

/* 4. Heading */
.d365-cst-popup-form-heading {
    color: #6164C2;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

/* 5. Form Layout and Spacing */
.d365-cst-popup-form-main {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.d365-cst-popup-form-row {
    display: flex;
    gap: 15px;

}

.d365-cst-popup-form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.d365-cst-popup-form-half {
    flex: 1;

}

.d365-cst-popup-form-full {
    width: 100%;
}

/* 6. Input Fields Styling (Uniformity) */
.d365-cst-popup-form-input {
    width: 100%;

    padding: 18px 15px;

    border: none;

    border-radius: 8px;
    background-color: #edefff;

    color: #000000;

    font-size: 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;

    box-sizing: border-box;
    height: 55px;

}

.d365-cst-popup-form-input:focus {
    box-shadow: 0 0 0 1px #6164C2;

}

.d365-cst-popup-form-textarea {
    min-height: 100px;

    height: auto;

    resize: vertical;
}

/* Placeholder Color (for the placeholder text to look like a label) */
.d365-cst-popup-form-input::placeholder {
    color: #6164C2;

    opacity: 1;

    font-weight: 500;
}

/* Dropdown specific styling (Option color fix) */
.d365-cst-popup-form-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%236164C2"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
    color: #6164C2;
}

.d365-cst-popup-form-dropdown.d365-cst-popup-form-selected {
    color: #000000 !important;

}

/* Dropdown option text color fix */
.d365-cst-popup-form-dropdown option {
    color: #000;
    background-color: #fff;
}

.d365-cst-popup-form-dropdown option:disabled {
    color: #6164C2;

}


/* 7. Close Button */
.d365-cst-popup-form-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;

    background: none;
    border: none;
    font-size: 35px;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

/* 8. Submit Button Styling */
.d365-cst-popup-form-submit-container {
    text-align: center;
    margin-top: 20px;

}

.d365-cst-popup-form-submit-btn {
    background-color: #6164c2;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 200px;
}

.d365-cst-popup-form-submit-btn:hover {
    background-color: #2a4acb;
}

/* 9. Validation/Error Styling */
.d365-cst-popup-form-input.d365-cst-popup-form-error {
    box-shadow: 0 0 0 1px #FF0000;

}

.d365-cst-popup-form-error-msg {
    color: #FF0000;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.d365-cst-popup-form-success-msg {
    color: #008000;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.d365-cst-popup-form-general-error-msg {
    color: #FF0000;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}


/* 10. Responsiveness for Mobile/Tablet */
@media (max-width: 650px) {
    .d365-cst-popup-form-content {
        max-width: 75%;
        padding: 20px 20px;

    }

    .d365-cst-popup-form-row {
        flex-direction: column;

        gap: 0;
    }

    .d365-cst-popup-form-group {
        margin-bottom: 15px;

    }

    .d365-cst-popup-form-group:last-child {
        margin-bottom: 0;
    }

    .d365-cst-popup-form-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Popup Contact us style End */

/* Counter section home page */
/* -------------------------------------------------------------------------- */
/* | SECTION: D365 Counter Section Styling (cst-counter-d365-) */
/* -------------------------------------------------------------------------- */
/* --- Base Section Styling --- */

.cst-counter-d365-section {
    /* Background ko safed (white) ya halka (light) kar diya gaya hai */
    background-color: #ffffff;
    color: #000000;
    padding: 55px 30px 30px 30px;
    overflow: hidden;
}

.cst-counter-d365-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Main 3-Column Layout using Grid for Desktop --- */
.cst-d365-main-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.8fr;
    gap: 14px;
    /* align-items: center; */
}

/* --- Left Column Styling (Text & Logos) --- */

.cst-d365-col-left {
    padding-right: 20px;
}

.cst-counter-d365-heading {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    color: #000000;
    margin-bottom: 25px;
}

.cst-d365-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    /* Thoda dark grey */
    margin-bottom: 30px;
}

.cst-d365-logo-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cst-d365-small-logo {
    max-height: 40px;
    width: auto;
}

.d365-dn {
    max-height: 50px !important;
}

/* --- Center Column Styling (Image) --- */

.cst-d365-col-center {
    position: relative;
}

.cst-d365-main-image {
    width: 100%;
    height: auto;
    display: block;
}


/* --- Right Column Styling (Counters) --- */

.cst-d365-col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: auto;
}

.cst-counter-d365-item {
    text-align: center;
}

/* Counter Number Styling */
.cst-counter-d365-number-wrapper {
    display: flex;
    align-items: center;
    line-height: 1;
    justify-content: center;
    margin-bottom: 5px;
}

.cst-counter-d365-number,
.cst-counter-d365-number-static {
    font-size: 34px;
    font-weight: 600;
    color: #494c9e;
    /* Purple/Blue color for numbers */
}

.cst-counter-d365-plus {
    font-size: 30px;
    font-weight: 700;
    color: #494c9e;
    margin-left: 2px;
    position: relative;
    top: 0px;
}

/* Descriptive Text Styling */
.cst-counter-d365-text {
    font-size: 16px;
    color: #5f5f5f;
    line-height: 1.4;
    margin: 0;
}

.cst-counter-d365-text a.sp-anchr-cst {
    color: #494c9e;
    text-decoration: none;
    font-weight: 700;
    display: inline;
}

/* -------------------------------------------------------------------------- */
/* | RESPONSIVE DESIGN (Changes made for visibility on white background) */
/* -------------------------------------------------------------------------- */

/* Tablet Screen (max-width: 992px) */
@media (max-width: 992px) {

    .cst-d365-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cst-d365-col-left {
        order: 1;
    }

    .cst-d365-col-center {
        order: 2;
    }

    .cst-d365-col-right {
        order: 3;
        /* Separator ko dark/grey kar diya gaya hai */
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cst-counter-d365-heading {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .cst-d365-paragraph {
        font-size: 14px;
    }

    .cst-d365-col-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        padding-top: 20px;
    }

    .cst-counter-d365-number,
    .cst-counter-d365-number-static {
        font-size: 30px;
    }

    .cst-counter-d365-plus {
        font-size: 30px;
    }

    .cst-d365-logo-row {
        justify-content: center;
    }

}

/* Mobile Screen (max-width: 768px) */
@media (max-width: 768px) {
    .cst-counter-d365-container {
        padding: 0 10px;
    }

    .cst-d365-col-left {
        padding-right: 0px;
    }

    .cst-counter-d365-text {
        font-size: 14px;
    }

    .cst-d365-small-logo {
        max-height: 25px;
        width: auto;
    }

    .d365-dn {
        max-height: 35px !important;
    }

    .cst-counter-d365-section {
        padding: 30px 10px;
    }

    .cst-counter-d365-heading {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cst-d365-col-right {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cst-counter-d365-number,
    .cst-counter-d365-number-static {
        font-size: 28px;
    }

    .cst-counter-d365-plus {
        font-size: 28px;
    }
}

/* Counter section home page End */
.sp-anchr-cst:hover {
    color: #191eb9;
}


/* Services slider  */
/* ======================================================= */
/* | SECTION 3: SERVICES SECTION STYLING (cst-d365-srv-cst-) */
/* ======================================================= */

.cst-d365-srv-cst-section {

    background: linear-gradient(178.69deg, #FFFFFF 1.11%, #A3A3D0 98.89%);
    padding: 20px 20px 45px;
    text-align: center;
}

.cst-d365-srv-cst-section {
    overflow-x: hidden;
}

.cst-d365-srv-cst-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Image Banner for overlap */
.cst-d365-srv-cst-image-banner {
    margin: 0px auto 0px auto;
    margin-inline: auto;
    padding: 46px 20px 0 20px;
    box-sizing: border-box;
}



.cst-d365-srv-cst-image-banner img {
    width: 40%;
    margin: auto;
    height: auto;
    box-shadow: 0px 4px 21.3px 0px #00000040;
    display: block;
    border-radius: 30px;
}

/* Header, Paragraph, and Controls Wrapper */
.cst-d365-srv-cst-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5px;
}

.cst-d365-srv-cst-text-content {
    text-align: left;
    max-width: 60%;
}

.cst-d365-srv-cst-heading {
    font-size: 30px;
    font-weight: 500;
    color: black;
    margin-bottom: 15px;
}

.cst-d365-srv-cst-paragraph {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin: 0;
}

/* Slider Navigation Arrows Styling */
.cst-d365-srv-cst-slider-nav {
    display: flex;
    gap: 15px;
}

/* Targetting Swiper's default button classes for custom look */
.swiper-button-prev,
.swiper-button-next {
    position: static !important;

    transform: none !important;
    margin: 0 !important;
    background-color: #6164C2;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 0 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-button-prev::before,
.swiper-button-next::before {
    content: none !important;
    display: none !important;
}

.swiper-button-prev::before {

    content: "\f053";
    font-family: 'Font Awesome 6 Free';

    font-weight: 900;

    font-size: 18px;
    color: #fff;
    line-height: 1;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    display: none !important;

}

.swiper-button-next::before {

    content: "\f054";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    line-height: 1;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #494c9e;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 18px;

    color: #fff;
    line-height: 1;
    display: block !important;
}

/* Swiper Wrapper (Container for Slider) */
.cst-d365-srv-cst-slider-wrapper {
    width: 100%;
    overflow: hidden;

}


/* ✅ Service Box Design (Matching image_19ed41.png) */
.cst-d365-srv-cst-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 30px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    min-height: 330px;
}

.cst-d365-srv-cst-box-icon {
    margin-bottom: 5px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cst-d365-srv-cst-box-icon img {
    max-width: 50px;
    max-height: 50px;
}

.cst-d365-srv-cst-box-title {
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
    line-height: 1.2;
    min-height: calc(2 * 1.2em + 5px);


    display: -webkit-box;
    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cst-d365-srv-cst-box-description {
    font-size: 14px;
    color: black;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 2px;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
}

.cst-d365-srv-cst-box-button {
    display: inline-block;
    width: fit-content;
    padding: 10px 25px;
    background-color: #8c90da;

    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: 0;
    margin-bottom: 15px;
}

.cst-d365-srv-cst-box-button:hover {
    background-color: #6164C2;
}

/* Bottom "Discuss Your Project Needs" Button */
.cst-d365-srv-cst-button-wrapper {
    margin-top: 60px;
    text-align: center;
}

.cst-d365-srv-cst-main-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: black;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cst-d365-srv-cst-main-button:hover {
    background-color: #494c9e;
    color: white
}


/* -------------------------------------------------------------------------- */
/* | RESPONSIVE DESIGN (Services Section) */
/* -------------------------------------------------------------------------- */

/* Tablet Screen (max-width: 992px) - Swiper shows 2 slides */
@media (max-width: 992px) {

    /* Header/Controls Alignment */
    .cst-d365-srv-cst-header-controls {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .cst-d365-srv-cst-text-content {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;

    }

    /* Heading Font size adjustment */
    .cst-d365-srv-cst-heading {
        font-size: 22px;
    }

    /* Card Alignment (Min-height kam kar dein agar sirf 2 ya 1 slide dikhani hai) */
    .cst-d365-srv-cst-box {
        min-height: -webkit-fill-available;

        padding: 25px;
    }
}

/* Mobile Screen (max-width: 576px) - Swiper shows 1 slide */
@media (max-width: 576px) {
    .cst-d365-srv-cst-box-button {
        margin-top: 20px;
    }

    /* Section Padding */
    .cst-d365-srv-cst-section {
        padding-top: 15px;
        padding-bottom: 40px;
    }

    /* Heading Font size adjustment */
    .cst-d365-srv-cst-heading {
        font-size: 24px;
    }

    /* Paragraph Font size adjustment */
    .cst-d365-srv-cst-paragraph {
        font-size: 15px;
    }

    /* Card Alignment and Size */
    .cst-d365-srv-cst-box {
        min-height: auto;

        padding: 20px;
    }

    /* Title Font size adjustment for mobile */
    .cst-d365-srv-cst-box-title {
        font-size: 18px;
        min-height: calc(2 * 1.2em);

    }

    /* Navigation arrows (agar inko chhota karna ho to) */
    .swiper-button-prev,
    .swiper-button-next {
        width: 35px !important;
        height: 35px !important;
    }

    .swiper-button-prev::before,
    .swiper-button-next::before {
        font-size: 16px;
    }

    /* Main Button Size */
    .cst-d365-srv-cst-main-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}


/* Note: Swiper JS will handle the 2-box/1-box view automatically via JS settings. */
/* Services slider  End */
/* Solution section home page */
.cst-sln-d365-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 1. Header Section (White Background) --- */
.cst-sln-d365-header-section-white {
    background: white;
    padding-top: 50px;
}

.cst-sln-d365-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;

    flex-wrap: wrap;
}

.cst-sln-d365-main-heading {
    color: #000;

    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    flex: 1;
    padding-right: 30px;
    min-width: 300px;
}

.cst-sln-d365-description {
    color: black;

    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

/* --- 2. Solutions Grid Section (Image Background) --- */
.cst-sln-d365-grid-section-bg-image {

    background-image: url('../images/home-page/solution-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 40px 0 60px 0;

}

/* Solutions Grid */
.cst-sln-d365-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Individual Solution Box (Now an <a> tag for better semantics) */
.cst-sln-d365-solution-box {

    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    position: relative;
    overflow: hidden;
    text-decoration: none;

    color: inherit;



    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background 0.3s ease;

}

.cst-sln-d365-solution-box:hover {
    background: rgba(255, 255, 255, 0.4);

}

.cst-sln-d365-box-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.cst-sln-d365-solution-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.cst-sln-d365-solution-name-wrapper {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.cst-sln-d365-solution-name {
    color: white;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-right: 10px;
}

.cst-sln-d365-arrow {
    color: white;

    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cst-sln-d365-solution-box:hover .cst-sln-d365-arrow {
    transform: translateX(5px);
}

/* --- Responsiveness --- */

/* Tablet (e.g., 768px to 1024px) */
@media (max-width: 1024px) {
    .cst-sln-d365-main-heading {
        font-size: 25px;
        padding-right: 20px;
    }

    .cst-sln-d365-description {
        font-size: 16px;
    }

    .cst-sln-d365-solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .cst-sln-d365-solution-box {
        min-height: 140px;
        padding: 15px;
    }

    .cst-sln-d365-solution-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .cst-sln-d365-solution-name {
        font-size: 16px;
    }

    .cst-sln-d365-arrow {
        font-size: 20px;
    }
}

/* Mobile (e.g., up to 767px) */
@media (max-width: 767px) {
    .d365-cst-popup-form-input {
        font-size: 12px;
    }

    .custm-bootstr-d365 {
        justify-content: center;
    }

    .cst-d365-srv-cst-image-banner img {
        width: 100%;
    }

    .br-m-ds {
        display: none;
    }

    .cst-sln-d365-header-section-white {
        padding-top: 40px;
    }

    .cst-sln-d365-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 30px;
    }

    .cst-sln-d365-main-heading {
        font-size: 20px;
        padding-right: 0;
        margin-bottom: 15px;
        min-width: unset;
    }

    .cst-sln-d365-description {
        font-size: 14px;
        min-width: unset;
    }

    .cst-sln-d365-grid-section-bg-image {
        padding: 30px 0 40px 0;
    }

    .cst-sln-d365-container {
        padding: 0 15px;
    }

    /* Adjust container padding for small screens */
    .cst-sln-d365-solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cst-sln-d365-solution-box {
        min-height: auto;
        padding: 15px;
    }

    .cst-sln-d365-solution-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }

    .cst-sln-d365-solution-name {
        font-size: 16px;
    }

    .cst-sln-d365-arrow {
        font-size: 20px;
    }
}

/* Solution section home page End */
/*CTA Home  */
/* Base Styles for the section */
.cst-d365-cta-hm-section-wrapper {
    background: linear-gradient(178.69deg, #FFFFFF 1.11%, #A3A3D0 98.89%);
    padding: 50px 20px;
}

.cst-d365-cta-hm-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Box Styling */
.cst-d365-cta-hm-card-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 10px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: visible;
    position: relative;
    min-height: 300px;
}

/* Left Content Area */
.cst-d365-cta-hm-content-left {
    flex: 1;

    padding-right: 40px;

    max-width: 50%;

    z-index: 1;

}

.cst-d365-cta-hm-heading {
    font-size: 30px;
    font-weight: 500;
    color: black;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cst-d365-cta-hm-subheading {
    font-size: 18px;
    color: black;
    font-weight: 400;
    margin-bottom: 60px;
}

.cst-d365-cta-hm-button {
    background: #6164C2;

    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cst-d365-cta-hm-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: #494c9d;
}

/* Right Image Area */
.cst-d365-cta-hm-image-right {
    display: flex;
    justify-content: end;
    width: 45%;
    height: auto;
    align-items: center;
}

.cst-d365-cta-hm-mockup-image {
    max-width: 68%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

/* --- Responsiveness --- */

/* Tablet (e.g., 768px to 1024px) */
@media (max-width: 1024px) {
    .cst-d365-cta-hm-card-box {
        padding: 30px;
        min-height: 300px;
    }

    .cst-d365-cta-hm-content-left {
        max-width: 60%;

        padding-right: 30px;
    }

    .cst-d365-cta-hm-heading {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .cst-d365-cta-hm-subheading {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .cst-d365-cta-hm-button {
        padding: 13px 25px;
        font-size: 16px;
    }

    .cst-d365-cta-hm-image-right {
        width: 40%;

    }

    .cst-d365-cta-hm-mockup-image {
        max-width: 100%;
    }
}

/* Mobile (e.g., up to 767px) */
@media (max-width: 767px) {
    .cst-d365-cta-hm-section-wrapper {
        padding: 50px 15px;
    }

    .cst-d365-cta-hm-card-box {
        flex-direction: column;

        padding: 30px 20px 9px 20px;
        min-height: auto;

        text-align: center;
        overflow: visible;

    }

    .cst-d365-cta-hm-content-left {
        max-width: 100%;

        padding-right: 0;
        margin-bottom: 30px;

    }

    .cst-d365-cta-hm-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .cst-d365-cta-hm-subheading {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cst-d365-cta-hm-button {
        padding: 12px 20px;
        font-size: 16px;
    }

    .cst-d365-cta-hm-image-right {

        width: 100%;
        height: auto;
        justify-content: center;
        margin-top: 0px;

    }

    .cst-d365-cta-hm-mockup-image {
        max-width: 80%;
        transform: none;
        margin: 0 auto;
        position: relative;
    }
}

/* Small Mobile (e.g., up to 480px) */
@media (max-width: 480px) {
    .cst-d365-cta-hm-heading {
        font-size: 20px;
    }

    .cst-d365-cta-hm-subheading {
        font-size: 15px;
    }

    .cst-d365-cta-hm-button {
        font-size: 15px;
        padding: 10px 18px;
    }

    .cst-d365-cta-hm-mockup-image {
        max-width: 100%;
    }
}

/*CTA Home  End */



@media (max-width: 767px) {

    /* Specific Fix for Dropdown Overlap */
    .d365-cst-popup-form-dropdown {

        padding-right: 40px;
    }
}

/* Why choose partner home section */
/* 1. Background Section Styling */
.cst-d365-ms-why-section {
    background-image: url('../images/home-page/Why-Partner-banner.webp');
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    padding: 50px 16px 20px 16px;

    position: relative;
}

.cst-d365-ms-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);

    z-index: 1;
}

.cst-d365-ms-why-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. Header Alignment */
.cst-d365-ms-why-header-box {
    text-align: center;
    margin-bottom: 28px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cst-d365-ms-why-heading {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 16px;
    color: white;
}

.cst-d365-ms-why-paragraph {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: white;
}

/* 3. Card Grid Layout (Key requirement: fixed alignment) */
.cst-d365-ms-why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

/* Card Styling */
.cst-d365-ms-why-card {
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: white;
    transition: transform 0.3s ease;
}


/* Content Structure inside Card for Fixed Alignment */
.cst-d365-ms-why-card-icon-box {

    margin-bottom: 16px;
}

/* 4. Heading Fix: Ensure all headings start at the same line */
.cst-d365-ms-why-card-heading {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    line-height: 1.4;
    margin-bottom: 12px;
    flex-basis: 50px;
}

/* 5. Paragraph Fix: Ensure all paragraphs start at the same line */
.cst-d365-ms-why-card-paragraph {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    flex-grow: 1;


    min-height: 120px;

    color: white;
}

/* Icon Styling */
.cst-d365-ms-why-icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;

}

/* --- Responsive Design --- */

/* Tablet (768px and up) - 2 columns */
@media (max-width: 1024px) {
    .cst-d365-ms-why-cards-grid {
        grid-template-columns: repeat(2, 1fr);

    }

    .cst-d365-ms-why-heading {
        font-size: 30px;
    }

    .cst-d365-ms-why-card-heading {
        flex-basis: 65px;
    }

    /* Adjust fixed height for tablet text */
    .cst-d365-ms-why-card-paragraph {
        min-height: 100px;
    }
}

/* Mobile (below 768px) - 1 column */
@media (max-width: 767px) {
    .cst-d365-ms-why-card {
        text-align: center;
    }

    .cst-d365-ms-why-section {
        padding: 60px 16px;
    }

    .cst-d365-ms-why-cards-grid {
        grid-template-columns: 1fr;

    }

    .cst-d365-ms-why-heading {
        font-size: 22px;
    }

    .cst-d365-ms-why-paragraph {
        font-size: 15px;
    }

    /* Remove fixed height on mobile as it's typically a vertical stack */
    .cst-d365-ms-why-card-heading {
        flex-basis: auto;
    }

    .cst-d365-ms-why-card-paragraph {
        min-height: auto;
    }
}

/* Why choose partner home section End */


/* Custom CSS for Industries Section */

/* 1. Background Gradient */
.cst-d365-ind-section {
    background: linear-gradient(178.69deg, #FFFFFF 1.11%, #A3A3D0 98.89%);
    padding: 50px 16px;
    color: black;
}

.cst-d365-ind-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* 2. Header Styling (Top Left) */
.cst-d365-ind-heading {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
    color: black;
    max-width: 600px;
}

.cst-d365-ind-paragraph {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: black;
    max-width: 700px;
}

/* 3. Main Content Grid (Image + Cards) */
.cst-d365-ind-main-content-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 125px;
}

/* Left Image Box */
.cst-d365-ind-image-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.cst-d365-ind-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Cards Grid */
.cst-d365-ind-cards-grid {
    display: grid;
    /* Is line ko badal kar ek column (1fr) kar dein */
    grid-template-columns: repeat(1, 1fr);
    /* ya sirf: grid-template-columns: 1fr; */

    gap: 10px;
    /* Gap ko list ke liye thoda kam bhi kar sakte hain */
    align-content: start;
}

/* Card Styling (White Box) */
.cst-d365-ind-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px 25px;
    /* Padding thori set ki */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: row;
    align-items: center;
    /* Icon aur Text ko center mein rakhe ga */
    gap: 20px;
    /* Icon aur Text ke beech faasla */

    transition: transform 0.3s ease;
    height: auto;
}

/* Agar aapke icon aur text alag-alag elements (maslan, icon ke liye <i> ya <div>, aur text ke liye <h3> ya <p>) mein hain, toh woh ab side-by-side aa jayenge. */

.cst-d365-ind-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.cst-d365-ind-card-icon {
    width: 48px;
    height: 48px;
}

.cst-d365-ind-card-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0px;
    margin-top: 0;
    color: black;



    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- Responsiveness --- */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
    .cst-d365-ind-main-content-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .cst-d365-ind-image-box {
        min-height: 400px;
        order: 2;

    }

    /* Tablet pe 2-columns cards */
    .cst-d365-ind-cards-grid {
        gap: 10px;
        order: 3;
    }

    .cst-d365-ind-heading {
        font-size: 25px;
    }

    .cst-d365-ind-paragraph {
        margin-bottom: 30px;
    }

    /* Remove fixed height on tablet as stacking changes vertical flow */
    .cst-d365-ind-card-heading {
        min-height: auto;
        margin-bottom: 0px;
        font-size: 15px;
    }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
    .cst-d365-ind-card-icon {
        width: 32px;
        height: 32px;
    }

    .cst-d365-ind-wrapper {
        padding: 0px 10px;
    }

    .custm-bootstr-d365 {
        justify-content: center;
    }

    .cst-d365-ind-section {
        padding: 30px 5px;
    }

    .cst-d365-ind-heading {
        font-size: 22px;
        text-align: center;
    }

    .cst-d365-ind-paragraph {
        font-size: 15px;
        text-align: center;
    }

    /* Mobile pe 1-column cards */
    .cst-d365-ind-cards-grid {
        grid-template-columns: 1fr;
    }

    .cst-d365-ind-image-box {
        min-height: 300px;
    }
}

/* Industries home end */


/* New 4c approachs */
/* Base Styles */
.d365-aprochd365-cst-section-wrapper {
    background-color: white;
    padding: 40px 20px 10px 20px;
}

.d365-aprochd365-cst-section-container {
    padding: 0px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.d365-aprochd365-cst-main-heading {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 0;
    color: black;
}

.d365-aprochd365-cst-content-area {
    display: flex;
    gap: 40px;
}

.d365-aprochd365-cst-tabs-list-container {
    flex: 1;
}

/* Tab Item Styling */
.d365-aprochd365-cst-tab-item {
    cursor: pointer;
    padding: 25px 0;
    transition: all 0.3s ease;
}

.d365-aprochd365-cst-divider {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 0;
}

.d365-aprochd365-cst-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: black;
    padding-right: 20px;
}

.d365-aprochd365-cst-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #4d6cda;
    transition: transform 0.3s ease;
}

/* --- Key Smooth Animation Styles --- */

.d365-aprochd365-cst-tab-content {
    /* Initially hidden/closed */
    max-height: 0;
    overflow: hidden;
    padding: 0 20px 0 20px;
    margin-top: 0;

    /* Smoother Transition with cubic-bezier for a natural feel */
    transition: max-height 0.4s cubic-bezier(0.86, 0, 0.07, 1),
        padding 0.4s cubic-bezier(0.86, 0, 0.07, 1);

    border-left: 3px solid transparent;
}

/* Active State Styles */
.d365-aprochd365-cst-active .d365-aprochd365-cst-tab-header {
    color: #4d6cda;
    font-weight: bold;
}

.d365-aprochd365-cst-active .d365-aprochd365-cst-arrow {
    border-top: 0;
    border-bottom: 5px solid #4d6cda;
}

.d365-aprochd365-cst-active .d365-aprochd365-cst-tab-content {
    /* Open state: Must be large enough for all content */
    max-height: max-content;
    padding: 10px 20px 10px 20px;
    border-left: 3px solid #4d6cda;
}

/* Content inside Tab Content */
.d365-aprochd365-cst-tab-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: black;
}

.d365-aprochd365-cst-explore-link {
    color: #4d6cda;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    cursor: pointer;
}

/* Desktop/Tablet Image Display (Right Side) */
.d365-aprochd365-cst-image-display-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 0;
}

.d365-aprochd365-cst-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Image Fade-in Animation */
.d365-aprochd365-cst-fade-in {
    animation: fadeInFromRight 0.5s ease-out forwards;
}

@keyframes fadeInFromRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Image container (Hidden on Desktop) */
.d365-aprochd365-cst-mobile-image-container {
    display: none;
    margin-top: 15px;
}

.d365-aprochd365-cst-mobile-image-container img {
    width: 100%;
    height: auto;
    border-radius: 0;
    clip-path: none;
}

/* --- Responsiveness (Tablet and Mobile) --- */

@media (max-width: 800px) {
    .d365-aprochd365-cst-content-area {
        flex-direction: column;
    }

    .d365-aprochd365-cst-image-display-container {
        display: none;
    }
}

@media (max-width: 767px) {

    /* Mobile: Show image *inside* the open tab content */
    .d365-aprochd365-cst-active .d365-aprochd365-cst-mobile-image-container {
        display: block;
    }

    .d365-aprochd365-cst-main-heading {
        font-size: 20px;
    }

    .d365-aprochd365-cst-section-wrapper {
        padding: 30px 5px 0 5px;
    }

    .d365-aprochd365-cst-tab-content p {
        font-size: 14px;
    }
}

/* New 4c approachs End */

/* partner logos */
/* -----------------------------------------------------
   1. MAIN SECTION & BASE STYLES
   ----------------------------------------------------- */
.cst-d365-logos-sct-main-section {
    background-color: #ffffff;

    padding: 30px 0 30px 0;

    width: 100%;
    box-sizing: border-box;
}

.cst-d365-logos-sct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Logos Wrapper: Ek hi line mein dikhane ke liye Flexbox */
.cst-d365-logos-sct-wrapper {
    display: flex;
    justify-content: space-between;

    align-items: center;
    flex-wrap: nowrap;

    gap: 20px;

}

/* Individual Logo Item */
.cst-d365-logos-sct-logo-item {

    flex: 1 1 180px;

    text-align: center;
    padding: 10px;
}

/* Image Styling */
.cst-d365-logos-sct-image {
    max-width: 60%;
    height: auto;
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s;
}

.cst-d365-logos-sct-image:hover {
    opacity: 1;
}

/* -----------------------------------------------------
   2. RESPONSIVENESS (TABLET)
   ----------------------------------------------------- */
@media (max-width: 1024px) {
    .cst-d365-logos-sct-wrapper {

        flex-wrap: wrap;
        justify-content: center;
    }

    .cst-d365-logos-sct-logo-item {

        flex: 0 1 150px;
    }
}


/* -----------------------------------------------------
   3. RESPONSIVENESS (MOBILE)
   ----------------------------------------------------- */
@media (max-width: 600px) {
    .cst-d365-logos-sct-main-section {
        padding: 40px 0 15px 0;
    }

    .cst-d365-logos-sct-wrapper {

        justify-content: space-around;
        gap: 10px;
    }

    .cst-d365-logos-sct-logo-item {

        flex: 0 1 45%;
        min-width: 120px;
    }

    .cst-d365-logos-sct-image {
        max-height: 40px;
        max-width: 90%;

    }
}

/* partner logos End */


/* Footer section */
/* -----------------------------------------------------
   1. BLUE CALL-TO-ACTION BOX (POSITION ABSOLUTE)
   ----------------------------------------------------- */
.footer-home-a:hover {
    color: #007bff;
}

.cst-d365-footr-cta-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.cst-d365-footr-cta-box {
    background: linear-gradient(90deg, #783DCB 0%, #1359E5 51.92%, #379FF6 100%);
    padding: 15px 30px;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cst-d365-footr-cta-box:hover {
    transform: scale(1.02);
}

.cst-d365-footr-cta-logo {
    flex-shrink: 0;

}

.cst-d365-footr-cta-logo-img {
    max-width: 185px;
    height: auto;
}

.cst-d365-footr-cta-content {
    flex-grow: 1;

}

.cst-d365-footr-cta-heading {
    color: #ffffff;
    font-size: 24px;
    margin-top: 0;
    font-weight: 500;
    margin-bottom: 10px;
}

.cst-d365-footr-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}


/* -----------------------------------------------------
   2. MAIN FOOTER SECTION (BACKGROUND IMAGE)
   ----------------------------------------------------- */
.cst-d365-footr-main-section {
    background-image: url('../images/footer/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 30px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cst-d365-footr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cst-d365-footr-top-content {
    display: flex;
    flex-direction: column;
}

.cst-d365-footr-region-heading {
    font-size: 30px;
    font-weight: 500;
    margin-top: 0;
    color: white;
    margin-bottom: 50px;
}

.cst-d365-footr-details-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side Details */
.cst-d365-footr-left-details {
    flex: 1;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 5px 30px;
    max-width: 50%;

}

.cst-d365-footr-sub-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
    color: #ffffff;
}

.cst-d365-footr-text {
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    margin-bottom: 0;
}

.cst-d365-footr-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    width: max-content;
}

.cst-d365-footr-phone:hover a {
    color: #007bff;
}

/* Social Icons */
.cst-d365-footr-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.cst-d365-footr-icon-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.cst-d365-footr-icon-link:hover {
    color: #007bff;
}


/* Right Side Form */
.cst-d365-footr-right-form-wrapper {
    flex: 1;

    max-width: 50%;
}

.cst-d365-footr-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #040526;

    padding: 30px;
    border-radius: 8px;
}

.cst-d365-footr-input,
.cst-d365-footr-textarea,
.cst-d365-footr-select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
}

.cst-d365-footr-input::placeholder,
.cst-d365-footr-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cst-d365-footr-input:focus,
.cst-d365-footr-textarea:focus,
.cst-d365-footr-select:focus {
    outline: none;
    border-color: #007bff;
}

.cst-d365-footr-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Custom Select Styling */
.cst-d365-footr-select-wrapper {
    position: relative;
}

.cst-d365-footr-select {
    appearance: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 35px;

}

.cst-d365-footr-select option {
    background-color: #100b3d;

    color: #ffffff;
}

.cst-d365-footr-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;

}

.cst-d365-footr-submit-btn {
    background-color: #494c9d;

    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cst-d365-footr-submit-btn:hover {
    background-color: #0056b3;
}

/* -----------------------------------------------------
   3. BOTTOM COPYRIGHT SECTION
   ----------------------------------------------------- */
.cst-d365-footr-copyright-section {
    background-color: #040526;
    padding: 20px 0 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cst-d365-footr-copyright-text {
    line-height: 1.6;
    color: white;
    margin-bottom: 0;
}

.cst-d365-footr-copyright-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.cst-d365-footr-copyright-link:hover {
    color: #007bff;
}


/* -----------------------------------------------------
   4. RESPONSIVENESS (TABLET & MOBILE)
   ----------------------------------------------------- */

@media (max-width: 1024px) {

    /* CTA Box */
    .cst-d365-footr-cta-box {
        flex-direction: column;

        text-align: center;
        gap: 20px;
        padding: 25px 30px;
        margin: auto;
    }

    .cst-d365-footr-cta-heading {
        font-size: 1.8rem;
    }

    .cst-d365-footr-cta-logo-img {
        max-width: 120px;
    }

    /* Main Footer */
    .cst-d365-footr-main-section {
        padding: 60px 0 60px 0;

    }

    .cst-d365-footr-region-heading {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .cst-d365-footr-details-wrapper {
        flex-direction: column;

    }

    .cst-d365-footr-left-details {
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cst-d365-footr-right-form-wrapper {
        max-width: 100%;

        margin-top: 25px;
    }

    .cst-d365-footr-form {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .cst-d365-footr-details-wrapper {
        gap: 10px;

    }

    /* CTA Box */
    .cst-d365-footr-cta-heading {
        font-size: 1.5rem;
    }

    .cst-d365-footr-cta-text {
        font-size: 0.9rem;
    }

    /* Main Footer */
    .cst-d365-footr-main-section {
        padding: 60px 0 50px 0;
    }

    .cst-d365-footr-region-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .cst-d365-footr-sub-heading {
        font-size: 18px;
    }

    .cst-d365-footr-input,
    .cst-d365-footr-textarea,
    .cst-d365-footr-select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .cst-d365-footr-submit-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .d365-impl-lst-sct-button {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .cst-d365-footr-phone {
        font-size: 15px;
    }

    .cst-d365-footr-text {
        font-size: 15px;
    }

    /* CTA Box */
    .cst-d365-footr-cta-box {
        width: 80%;
        padding: 20px 20px;
        margin: auto;
    }

    .cst-d365-footr-cta-logo-img {
        max-width: 100px;
    }

    .cst-d365-footr-cta-heading {
        font-size: 18px;
        line-height: normal;
    }

    .cst-d365-footr-cta-text {
        font-size: 0.85rem;
    }

    /* Main Footer */
    .cst-d365-footr-main-section {
        padding: 60px 0 40px 0;
    }

    .cst-d365-footr-region-heading {
        font-size: 20px;
    }


    .cst-d365-footr-left-details {
        gap: 20px;
    }

    .cst-d365-footr-social-icons {
        gap: 10px;
    }

    .cst-d365-footr-icon-link {
        font-size: 1.3rem;
    }

    .cst-d365-footr-form {
        padding: 20px;
    }

    /* Copyright */
    .cst-d365-footr-copyright-text {
        font-size: 0.8rem;
    }
}

/* Footer section End */
.cst-d365-footr-input.footer-error,
.cst-d365-footr-select.footer-error {
    border-color: red !important;

}

.cst-d365-footr-error-msg {
    color: red;
    font-size: 12px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Implementation service */
/* ------------------------------------------- */
/* HERO SECTION STYLES (d365-impl-cst-) */
/* ------------------------------------------- */

/* SECTION CONTAINER */
.d365-impl-cst-hero-section {
    position: relative;

    background: url('../images/services/implementation/Implementation-header.webp') no-repeat center center;
    background-size: cover;

    padding: 160px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

/* CONTENT WRAPPER - Desktop Container ka kaam karega */
.d365-impl-cst-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;

    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    text-align: left;
    padding: 0 15px;


    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

}

/* TEXT CONTAINER (Jo content ko left corner se door rakhega) */
.d365-impl-cst-text-container {

    max-width: 55%;
    flex-grow: 1;

}

/* IMAGE CONTAINER */
.d365-impl-cst-image-container {
    max-width: 450px;

    flex-shrink: 0;

    display: flex;
    justify-content: center;

    align-items: center;
}

/* IMAGE ITSELF */
.d365-impl-cst-hero-image {
    width: 85%;
    height: auto;
    display: block;
}


/* MAIN HEADING (Dynamics 365 Implementation) */
.d365-impl-cst-main-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0px;
    color: white;
}

/* SUB HEADING (Designed for Success, Not Surprises) */
.d365-impl-cst-sub-heading {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 30px;
    color: white;
}

/* PARAGRAPH */
.d365-impl-cst-paragraph {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 650px;
    color: white;
}

/* CALL TO ACTION BUTTON (Lets Talk) */
.d365-impl-cst-cta-button {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;

    color: #1a4d95;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.d365-impl-cst-cta-button:hover {
    background-color: #494c9d;
    color: white;
}

/* ------------------------------------------- */
/* RESPONSIVENESS (MOBILE AND TABLET) */
/* ------------------------------------------- */

/* Tablet (Screens <= 992px) */
@media (max-width: 992px) {
    .d365-impl-cst-hero-section {

        padding: 100px 20px 80px 20px;
        min-height: auto;

    }

    .d365-cstmi-cst-hero-section {

        padding: 100px 20px 80px 20px !important;
        min-height: auto;

    }

    .d365-spprt-cst-hero-section {

        padding: 100px 20px 80px 20px !important;
        min-height: auto;

    }

    .d365-augmt-cst-hero-section {

        padding: 100px 20px 80px 20px !important;
        min-height: auto;

    }

    .d365-impl-cst-content-wrapper {
        max-width: 100%;
        padding: 0 20px;

        flex-direction: column-reverse;
        text-align: center;
        gap: 10px;

    }

    /* === NEW: Image aur Text container ki width 100% kar di === */
    .d365-impl-cst-text-container,
    .d365-impl-cst-image-container {
        max-width: 100%;
        flex-basis: 100%;
        text-align: center;
    }

    .d365-impl-cst-image-container {

        max-width: 400px;
        margin: 0 auto;
    }

    .d365-impl-cst-text-container {

        padding-left: 0;
    }

    /* Text centering in tablet/mobile */
    .d365-impl-cst-main-heading,
    .d365-impl-cst-sub-heading,
    .d365-impl-cst-paragraph {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .d365-impl-cst-paragraph {
        max-width: 90%;

    }


    .d365-impl-cst-main-heading {
        font-size: 30px;
    }

    .d365-impl-cst-sub-heading {
        font-size: 24px;
    }
}

/* Mobile (Screens <= 576px) */
@media (max-width: 576px) {
    .d365-impl-cst-hero-section {
        padding: 80px 15px 60px 15px;

        min-height: auto;

        justify-content: center;
    }

    .d365-cstmi-cst-hero-section {
        padding: 80px 15px 60px 15px !important;

        min-height: auto;

        justify-content: center;
    }

    .d365-spprt-cst-hero-section {
        padding: 80px 15px 60px 15px !important;

        min-height: auto;

        justify-content: center;
    }

    .d365-augmt-cst-hero-section {
        padding: 80px 15px 60px 15px !important;

        min-height: auto;

        justify-content: center;
    }

    .d365-impl-cst-content-wrapper {
        padding: 0;
        gap: 1px;

    }

    .d365-impl-cst-image-container {
        max-width: 200px;
        margin-top: 28px;
        margin-inline: auto;
    }

    /* Mobile par headings/paragraph ko center align karne ke liye */
    .d365-impl-cst-main-heading {
        font-size: 24px;
    }

    .d365-impl-cst-sub-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .d365-impl-cst-paragraph {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

/* Second section */
/* ------------------------------------------- */
/* SECOND SECTION STYLES (d365-impl-scnd-) */
/* ------------------------------------------- */

/* MAIN SECTION CONTAINER */
.d365-impl-scnd-main-section {
    background-color: #ffffff;

    padding: 40px 0;
}

/* CONTENT WRAPPER */
.d365-impl-scnd-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER (Heading aur Paragraph) */
.d365-impl-scnd-header {
    text-align: center;
    margin-bottom: 40px;
}

.d365-impl-scnd-main-heading {
    font-size: 30px;
    font-weight: 500;
    color: black;
    margin-top: 0;
    margin-bottom: 10px;
}

.d365-impl-scnd-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    max-width: 900px;
    margin: 0 auto;
}

/* BOXES CONTAINER (Flex setup for equal height) */
.d365-impl-scnd-boxes-container {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    justify-content: center;
}

/* INDIVIDUAL BOX STYLES */
.d365-impl-scnd-box {
    flex: 1;
    max-width: 25%;
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* HOVER EFFECT */
.d365-impl-scnd-box:hover {
    border-color: #494c9d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* ICON WRAPPER (Box for icon) */
.d365-impl-scnd-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 0px;

    background: rgba(173, 175, 226, 0.25);
}

/* ICON IMAGE */
.d365-impl-scnd-icon {
    width: 72%;
    height: 72%;
}

/* BOX HEADING */
.d365-impl-scnd-box-heading {
    font-size: 18px;
    font-weight: 500;
    color: black;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* BOX PARAGRAPH */
.d365-impl-scnd-box-paragraph {
    font-size: 13px;
    line-height: 1.6;
    color: black;
    flex-grow: 1;
    margin-bottom: 0;
}


/* ------------------------------------------- */
/* RESPONSIVENESS */
/* ------------------------------------------- */

/* Tablet (Screens <= 1024px) */
@media (max-width: 1024px) {
    .d365-impl-scnd-main-section {
        padding: 60px 0;
    }

    /* 2 boxes per row */
    .d365-impl-scnd-box {
        flex: 0 0 calc(50% - 0px);
        max-width: 40%;
    }

    .d365-impl-scnd-main-heading {
        font-size: 30px;
    }
}



/* Mobile (Screens <= 600px) */
@media (max-width: 767px) {


    .d365-impl-scnd-main-section {
        padding: 40px 0;
    }

    .d365-impl-scnd-header {
        margin-bottom: 20px;
    }

    /* 1 box per row */
    .d365-impl-scnd-box {
        max-width: 100%;

        flex: 1 1 100%;
        padding: 25px;
    }

    .d365-impl-scnd-main-heading {
        font-size: 20px;
    }

    .d365-impl-scnd-paragraph {
        font-size: 14px;
    }
}

/* Second section  End*/
/* Third Section  */
.d365-impl-thrd-main-section {
    background-color: rgba(238, 238, 248, 1);

    padding: 50px 0;
}

.d365-impl-thrd-content-wrapper {

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Left Side (Image) */
.d365-impl-thrd-left-col {
    flex: 1;
    min-width: 45%;
}

.d365-impl-thrd-static-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Right Side (Content) */
.d365-impl-thrd-right-col {
    flex: 1;
    min-width: 45%;
}

.d365-impl-thrd-main-heading {
    font-size: 30px;
    font-weight: 500;
    color: black;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 0;
}

.d365-impl-thrd-main-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin-bottom: 40px;
}

/* Tab Icons Container */
.d365-impl-thrd-tabs-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.d365-impl-thrd-tab-item {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #ffffff;

    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Icon box active state */
.d365-impl-thrd-tab-item.active {
    background-color: rgba(173, 175, 226, 0.25);

    border-color: #494c9d;

    box-shadow: 0 4px 10px rgba(73, 76, 157, 0.1);
}

.d365-impl-thrd-tab-icon {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* Dynamic Content */
.d365-impl-thrd-dynamic-content-heading {
    font-size: 24px;
    font-weight: 500;
    color: black;
    margin-bottom: 10px;
}

.d365-impl-thrd-dynamic-content-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: black;
}

/* ------------------------------------------- */
/* RESPONSIVENESS */
/* ------------------------------------------- */

/* Tablet/Mobile Layout Change (Stacking) */
@media (max-width: 992px) {
    .d365-impl-thrd-content-wrapper {
        display: block;
    }

    .d365-impl-thrd-left-col,
    .d365-impl-thrd-right-col {
        min-width: 100%;
    }

    /* Change: Image (Left Col) should come first (order: 1) */
    .d365-impl-thrd-left-col {
        order: 1;
        margin-bottom: 10px;
    }

    /* Change: Content (Right Col) should come second (order: 2) */
    .d365-impl-thrd-right-col {
        order: 2;
    }

    .d365-impl-thrd-main-heading {
        font-size: 28px;
        text-align: center;
    }

    .d365-impl-thrd-main-paragraph {
        text-align: center;
    }

    .d365-impl-thrd-tabs-container {
        justify-content: center;

        gap: 10px;
        margin-bottom: 20px;
    }
}

/* Mobile Specific */
@media (max-width: 600px) {
    .d365-impl-thrd-tab-item {
        width: 50px;
        height: 50px;
    }

    .d365-impl-thrd-dynamic-content-paragraph {
        font-size: 14px;
        margin-bottom: 0;
    }

    .d365-impl-thrd-main-heading {
        font-size: 20px;
    }

    .d365-impl-thrd-main-paragraph {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .d365-impl-thrd-dynamic-content-heading {
        font-size: 16px;
        text-align: center;
    }

    .d365-impl-thrd-dynamic-content-paragraph {
        text-align: center;
    }
}

/* Third Section  End */
/* Fourth section */
.d365-impl-wht-hpn-main-section {
    background: #E4E4EE;
    padding: 50px 0;
}

.d365-impl-wht-hpn-content-box {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
}

/* Left Column: Text Content */
.d365-impl-wht-hpn-text-col {
    flex: 1;
    padding: 40px 0px 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.d365-impl-wht-hpn-main-heading {
    font-size: 24px;
    font-weight: 500;
    color: black;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Checkmark Item Styling */
.d365-impl-wht-hpn-check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.d365-impl-wht-hpn-check-icon {
    color: #494c9d;
    font-size: 24px;
    margin-right: 15px;
    line-height: 1;
}

/* Inline SVG for Checkmark - Fallback for fonts not loading */
.d365-impl-wht-hpn-check-icon svg {
    width: 20px;
    height: 20px;
    fill: #494c9d;
    margin-top: 4px;
}

.d365-impl-wht-hpn-check-text h4 {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin: 0 0 5px 0;
}

.d365-impl-wht-hpn-check-text p {
    font-size: 15px;
    color: black;
    margin: 0;
    line-height: 1.5;
}

/* Right Column: Image */
.d365-impl-wht-hpn-image-col {
    flex: 1;
    position: relative;
    text-align: end;

}

/* Image itself */
.d365-impl-wht-hpn-image {
    width: 75%;
    height: 100%;
    border-radius: 0 16px 16px 0;
}

/* ------------------------------------------- */
/* RESPONSIVENESS */
/* ------------------------------------------- */

@media (max-width: 992px) {
    .d365-impl-wht-hpn-content-box {
        flex-direction: column;

        min-height: auto;
    }

    .d365-impl-wht-hpn-text-col {
        padding: 40px 30px;
    }

    .d365-impl-wht-hpn-main-heading {
        text-align: center;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .d365-impl-wht-hpn-image-col {

        order: -1;
        height: 300px;

    }

    .d365-impl-wht-hpn-image {
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 600px) {
    .d365-impl-wht-hpn-text-col {
        padding: 30px 20px;
    }

    .d365-impl-wht-hpn-main-heading {
        font-size: 20px;
    }

    .d365-impl-wht-hpn-check-text h4 {
        font-size: 16px;
    }

    .d365-impl-wht-hpn-check-text p {
        font-size: 14px;
    }
}

/* Fourth section End */
/* Last section  */
.d365-impl-lst-sct-main-section {
    background-color: #FFFFFF;

    padding: 40px 0;
}

.d365-impl-lst-sct-main-section-cs {
    background-color: #EBEEF5;

    padding: 40px 0;
}

.d365-impl-lst-sct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-impl-lst-sct-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.d365-impl-lst-sct-main-heading {
    font-size: 30px;
    font-weight: 500;
    color: black;
    margin-bottom: 40px;
    line-height: 1.2;
    margin-top: 0;
}

/* Left Column: Content */
.d365-impl-lst-sct-left-col {
    flex: 1;
    padding-right: 20px;
}

/* Testimonial Block */
.d365-impl-lst-sct-testimonial-block {
    border-left: 4px solid #494c9d;

    padding-left: 20px;
    margin-bottom: 30px;
}

.d365-impl-lst-sct-quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 10px;
    font-style: italic;
}

.d365-impl-lst-sct-quote-source {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

/* Check Item Styling */
.d365-impl-lst-sct-check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.d365-impl-lst-sct-check-icon {
    color: #494c9d;
    font-size: 20px;
    margin-right: 15px;
    line-height: 1;
}

.d365-impl-lst-sct-check-icon svg {
    width: 20px;
    height: 20px;
    fill: #494c9d;
    margin-top: 2px;
}

.d365-impl-lst-sct-check-text strong {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin-bottom: 4px;
}

.d365-impl-lst-sct-check-text p {
    font-size: 15px;
    color: black;
    margin: 0;
    line-height: 1.5;
}

/* Consultation Button */
.d365-impl-lst-sct-button {
    display: inline-block;
    padding: 12px 22px;
    background: #505050;

    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin-top: 10px;
}

.d365-impl-lst-sct-button:hover {
    background-color: #494c9d;
}

/* Right Column: Image */
.d365-impl-lst-sct-right-col {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

.d365-impl-lst-sct-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.d365-impl-lst-sct-image-cs {
    width: 80%;
    height: auto;
    border-radius: 12px;
}

.why-choose-scm-img {
    margin-top: 60px;
}

/* ------------------------------------------- */
/* RESPONSIVENESS */
/* ------------------------------------------- */

@media (max-width: 992px) {
    .why-choose-scm-img {
        margin-top: 18px;
    }

    .d365-impl-lst-sct-wrapper {
        flex-direction: column;

        gap: 25px;
    }

    /* Mobile View: Right Side (Image) pehle show ho */
    .d365-impl-lst-sct-right-col {
        order: -1;
    }

    /* Mobile View: Left Side (Content) baad mein show ho */
    .d365-impl-lst-sct-left-col {
        order: 1;
        padding-right: 0;
    }

    .d365-impl-lst-sct-main-heading {
        text-align: center;
        font-size: 28px;
    }

    /* Center align items on small screen */
    .d365-impl-lst-sct-check-item {
        align-items: flex-start;
    }

    .mrt-mob-whychos {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .d365-impl-lst-sct-main-heading {
        font-size: 20px;
    }

    .d365-impl-lst-sct-quote-text {
        font-size: 14px;
    }

    .d365-impl-lst-sct-quote-source {
        font-size: 14px;
    }

    .d365-impl-lst-sct-check-text p {
        font-size: 13px;
    }
}

/* Last section End */
/* Implementation service End */



/* Contact us page */
/* ---------------------------------------------------- */
/* MAIN SECTION STYLES (d365-contact-pg-) */
/* ---------------------------------------------------- */
.d365-contact-pg-section {
    padding: 170px 20px 50px 20px;
    background-color: #ffffff;

}

/* Desktop Container (1200px Max Width) */
.d365-contact-pg-container {
    width: 100%;
    max-width: 1200px;
    flex-direction: row;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT INFO BLOCK */
.d365-contact-pg-info-block {
    flex: 1;
    padding-right: 20px;
}

/* Right Form Block */
.d365-contact-pg-form-container {
    flex: 1;
    padding: 40px;
    background-color: #f0f3f7;

    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Heading Styles */
.d365-contact-pg-main-heading {
    font-size: 34px;
    font-weight: 500;
    color: black;
    margin-bottom: 30px;
}

/* === USP List Styling (Jahan Check Icons use ho rahe hain) === */
.d365-contact-pg-usp-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.d365-contact-pg-usp-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: black;
    line-height: 1.4;
}

.d365-contact-pg-check-icon {

    color: #494c9d;

    font-size: 1.25rem;
    margin-right: 15px;
}


/* Business Inquiry Section */
.d365-contact-pg-sub-heading {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 20px;
}

.d365-contact-pg-contact-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.d365-contact-pg-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 1px solid #d0d7e0;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
    flex: 1;
    text-align: center;
}

.d365-contact-pg-contact-btn:hover {
    border-color: #1a4d95;
    background-color: #f7f9fc;
}

.d365-contact-pg-btn-icon {
    font-size: 20px;
    color: #494c9d;
    margin-bottom: 5px;
}

.d365-contact-pg-btn-label {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

.d365-contact-pg-btn-value {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

/* Image Placeholder */
.d365-contact-pg-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ---------------------------------------------------- */
/* FORM STYLES */
/* ---------------------------------------------------- */
.d365-contact-pg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.d365-contact-pg-form-group {
    position: relative;
    margin-bottom: 10px;
    grid-column: span 1;

}

.d365-contact-pg-form-group.full-width {
    grid-column: 1 / -1;

}

.d365-contact-pg-select {
    margin-top: 10px;
}

.d365-contact-pg-input,
.d365-contact-pg-select,
.d365-contact-pg-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d7e0;
    border-radius: 8px;
    font-size: 14px;
    color: black;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.d365-contact-pg-input:focus,
.d365-contact-pg-select:focus,
.d365-contact-pg-textarea:focus {
    outline: none;
    border-color: #494c9d;
    box-shadow: 0 0 0 2px rgba(26, 77, 149, 0.2);
}

.d365-contact-pg-input.error,
.d365-contact-pg-select.error,
.d365-contact-pg-textarea.error {
    border-color: #ef4444;

}

.d365-contact-pg-textarea {
    resize: vertical;
    min-height: 120px;
}

.d365-contact-pg-label {
    display: block;
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
    font-weight: 500;
}

.d365-contact-pg-error-msg {
    display: none;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* Dropdown Group */
.d365-contact-pg-priority-heading {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Checkbox Group */
.d365-contact-pg-checkbox-group {
    margin-top: 10px;
    margin-bottom: 20px;

    align-items: center;
    font-size: 14px;
    color: black;
}

.d365-contact-pg-checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
}

.d365-contact-pg-checkbox-group label a {
    color: #1a4d95;
    text-decoration: none;
    font-weight: 600;
}

.d365-contact-pg-checkbox-error {
    display: none;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* Submit Button */
.d365-contact-pg-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    padding: 12px 25px;
    margin-top: 25px;
    background-color: #6f72dd;

    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 10px rgba(26, 77, 149, 0.4);
}

.d365-contact-pg-submit-btn:hover:not(:disabled) {
    background-color: #494c9d;
}

.d365-contact-pg-submit-btn:disabled {
    background-color: #9db2cc;
    cursor: not-allowed;
}

.d365-contact-pg-submit-btn i {
    margin-left: 10px;
}

.d365-contact-pg-general-error {
    display: none;
    color: #ef4444;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #fecaca;
    background-color: #fef2f2;
    border-radius: 8px;
}

/* ---------------------------------------------------- */
/* SUCCESS POPUP STYLES */
/* ---------------------------------------------------- */
.d365-contact-pg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;

    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.d365-contact-pg-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.d365-contact-pg-modal-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    text-align: center;
}

.d365-contact-pg-modal-overlay.open .d365-contact-pg-modal-content {
    transform: scale(1);
}

/* Cross/Close Button Styling */
.d365-contact-pg-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #9ca3af;

    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}

.d365-contact-pg-modal-close:hover {
    color: #1f2937;

}

.d365-contact-pg-modal-success-icon {
    color: #10B981;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.d365-contact-pg-modal-heading {
    color: #19234d;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;

}

.d365-contact-pg-modal-message-text {
    font-size: 16px;
    line-height: 1.6;
    color: black;
}

.d365-contact-pg-modal-message-text a {
    color: #1a4d95;
    font-weight: 600;
    text-decoration: none;
}


/* ---------------------------------------------------- */
/* RESPONSIVENESS (Tablet & Mobile) */
/* ---------------------------------------------------- */

/* Tablet (Screens <= 992px) */
@media (max-width: 992px) {
    .d365-contact-pg-section {
        padding: 120px 20px 60px 20px;
    }

    .d365-contact-pg-container {
        flex-direction: column;

    }

    .d365-contact-pg-checkbox-group {
        font-size: 10px;
    }

    .d365-contact-pg-info-block {
        padding-right: 0;
        margin-bottom: 5px;
    }

    .d365-contact-pg-priority-heading {
        font-size: 14px;
    }

    .d365-contact-pg-label {
        font-size: 14px;
    }

    .d365-contact-pg-form-container {
        padding: 30px 20px;
    }

    .d365-contact-pg-main-heading {
        font-size: 30px;
    }

    .d365-contact-pg-form-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .d365-contact-pg-form-group {
        grid-column: 1 / -1;

    }

    .d365-contact-pg-contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .d365-contact-pg-image {
        height: auto;
    }
}

/* Mobile (Screens <= 576px) */
@media (max-width: 576px) {
    .d365-contact-pg-usp-item {
        text-align: left;
        font-size: 14px;
    }

    .d365-contact-pg-check-icon {
        font-size: 16px;
        margin-right: 10px;
    }

    .d365-contact-pg-section {
        padding: 120px 15px 50px 15px;
    }

    .d365-contact-pg-main-heading {
        font-size: 22px;
        text-align: center;
    }

    .d365-contact-pg-info-block {
        text-align: center;
    }

    .d365-contact-pg-checklist {
        text-align: left;

        margin-left: auto;
        margin-right: auto;
        max-width: 300px;

    }

    .d365-contact-pg-sub-heading {
        text-align: center;
        font-size: 18px;
    }

    .d365-contact-pg-contact-buttons {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .d365-contact-pg-submit-btn {
        width: 100%;
        min-width: initial;
    }
}

/* Contact us page End */
/* Privacy Policy Page */
.d365-prvcy-bg-header {
    background-image: url('../images/privacy-policy/Privacy-Policy.webp');

}

/* ------------------- Global Styles and Prefix ------------------- */
#d365-prvcy-main-page {
    color: black;
}

.d365-prvcy-heading-main {
    font-size: 50px;
    font-weight: 400;
    margin: 0;
    color: white;
}

.d365-prvcy-heading-secondary {
    font-size: 26px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 10px;
}

#d365-prvcy-container p,
#d365-prvcy-container ul,
#d365-prvcy-container ol {
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 16px;
}

.d365-prvcy-list {
    margin-left: 20px;
    padding-left: 0;
}

.d365-prvcy-list li {
    margin-bottom: 8px;
}

.d365-prvcy-link {
    color: #494c9d;

    text-decoration: none;
    font-weight: 600;
}

.d365-prvcy-link:hover {
    text-decoration: underline;
}

/* ------------------- 1. Hero Section Styling ------------------- */
#d365-prvcy-hero-section {
    background-size: cover;
    padding: 215px 0 150px 0;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#d365-prvcy-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);

    z-index: -1;
}

#d365-prvcy-hero-content {
    color: #ffffff;

    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

/* ------------------- 2. Content Section Styling ------------------- */
#d365-prvcy-content-wrapper {
    background-color: #ffffff;
    padding: 35px 0;

}

#d365-prvcy-container {
    max-width: 1100px;

    margin: 0 auto;
    padding: 0 30px;

}

/* ------------------- Contact Info Styling ------------------- */
.d365-prvcy-contact-info {
    font-size: 18px;
    font-weight: 600;
}

/* ------------------- Responsive Design ------------------- */

/* Tablet Screens (Max Width 992px) */
@media (max-width: 992px) {
    #d365-prvcy-container {
        padding: 0 25px;
    }

    .d365-prvcy-heading-main {
        font-size: 36px;
    }

    .d365-prvcy-heading-secondary {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
}

/* Mobile Screens (Max Width 576px) */
@media (max-width: 576px) {
    #d365-prvcy-hero-section {
        padding: 150px 0 70px 0;
    }

    .d365-prvcy-heading-main {
        font-size: 25px;
    }

    #d365-prvcy-content-wrapper {
        padding: 22px 0;
    }

    #d365-prvcy-container {
        padding: 0 15px;
    }

    .d365-prvcy-heading-secondary {
        font-size: 18px;
    }

    #d365-prvcy-container p,
    #d365-prvcy-container ul,
    #d365-prvcy-container ol {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Privacy Policy Page End */
/* Migration */
.d365-migration-cst-hero-section {

    background-image: url('../images/services/migration/migration-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}



.d365-migration-cst-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    text-align: left;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.d365-migration-cst-text-content {
    flex: 1;

    max-width: 55%;

}

.d365-migration-cst-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    color: white;
}

.d365-migration-cst-paragraph {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 650px;
    color: white;
}

.d365-migration-cst-button {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    color: #1a4d95;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.d365-migration-cst-button:hover {
    background-color: #494c9d;
    color: white;
}

.d365-migration-cst-image-content {
    max-width: 450px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d365-migration-cst-main-image {
    width: 88%;
    height: auto;
    display: block;
}

/* ---------------------------------------------------- */
/* Responsive Design */
/* ---------------------------------------------------- */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .d365-migration-cst-main-image {
        width: 50%;
    }

    .d365-migration-cst-hero-section {
        padding: 10px 15px;
    }

    .d365-migration-cst-image-content {
        margin-top: 50px;
    }

    .d365-migration-cst-container {
        flex-direction: column-reverse;

        gap: 0px;
        padding: 0 0 30px 0;

        text-align: center;


    }

    .d365-migration-cst-text-content,
    .d365-migration-cst-image-content {
        max-width: 100%;

    }

    .d365-migration-cst-heading {
        font-size: 30px;
    }

    .d365-spprt-cst-heading {
        font-size: 25px !important;
        margin-top: 20px;
        margin-bottom: 15px !important;
    }

    .d365-migration-cst-paragraph {
        font-size: 16px;

        text-align: center;
        margin: auto;
    }

    .d365-migration-cst-image-content {
        text-align: center;

    }

}


@media (max-width: 650px) {
    .d365-migration-cst-main-image {
        width: 85%;
    }

    .d365-migration-cst-image-content {
        margin-top: 0px;
    }

    .d365-migration-cst-hero-section {
        padding: 80px 15px 15px 15px;
        min-height: auto;
        text-align: center;
        justify-content: center;
    }

    .d365-migration-cst-heading {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .d365-impl-lst-sct-check-text strong {
        font-size: 14px;
        line-height: 1.4;
    }

    .d365-spprt-cst-heading {
        font-size: 20px !important;
        margin-bottom: 15px !important;
        margin-top: 20px;
    }

    .d365-migration-cst-paragraph {
        font-size: 14px;
        margin-bottom: 25px;

    }

    .d365-migration-cst-button {
        padding: 10px 20px;
        font-size: 12px
    }
}

/* Migration third section */
/* Section Base Styles */
.d365-migration-cst-third-section {
    background: #E4E4EE;

    padding: 50px 20px 50px 20px;

}

.d365-migration-cst-third-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading and Paragraph Styles */
.d365-migration-cst-third-heading {
    font-size: 30px;

    font-weight: 500;

    margin-bottom: 20px;
    color: black;
    margin-top: 0;

}

.d365-migration-cst-third-paragraph {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: black;
}

/* Table Base Styles */
.d365-migration-cst-third-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    border-radius: 8px;

    overflow: hidden;
}

/* Table Header Styles (Exact Match) */
.d365-migration-cst-third-table-header-row {
    color: white;
}

.d365-migration-cst-third-table-header-cell {
    background: #6D80E9;

    padding: 12px 5px 12px 12px;

    text-align: center;
    font-weight: 600;

    font-size: 0.95rem;
    border: none;

    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.d365-migration-cst-third-table-header-cell-key {
    text-align: left;
    width: 25%;

}

.d365-migration-cst-third-table-header-cell-last {
    border-right: none;
}

/* Table Body Cell Styles */
.d365-migration-cst-third-table-body-cell {
    padding: 15px 12px;

    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    color: black;
}

/* Key Feature Column Styling */
.d365-migration-cst-third-table-body-cell-key {
    text-align: left;
    font-weight: 500;

    color: black;
}

/* Table Row Alternating Colors (Exact Match) */
.d365-migration-cst-third-table-body-row {

    border-bottom: 1px solid #EDEDED;
}

.d365-migration-cst-third-table-body-row-light {
    background-color: white;
}

.d365-migration-cst-third-table-body-row-dark {
    background-color: #F8F8F8;

}

.d365-migration-cst-third-table-body-row-last {
    border-bottom: none;
}

/* ====================================
   RESPONSIVENESS (TABLET & MOBILE)
   ==================================== */

/* Tablet and Small Desktop Adjustments */
@media screen and (max-width: 1024px) {
    .d365-migration-cst-third-heading {
        font-size: 24px;
    }
}

/* Mobile Responsiveness for Table: Horizontal Scroll (Best for comparison tables) */
@media screen and (max-width: 768px) {
    .d365-migration-cst-third-section {
        padding: 40px 15px;
    }

    .d365-migration-cst-third-heading {
        font-size: 20px;
    }

    .d365-migration-cst-third-paragraph {
        font-size: 14px;
    }

    /* Enable horizontal scrolling for the table */
    .d365-migration-cst-third-table-responsive {
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;

    }

    .d365-migration-cst-third-table {

        min-width: 700px;
    }

    .d365-migration-cst-third-table-header-cell,
    .d365-migration-cst-third-table-body-cell {
        padding: 10px 8px;
        font-size: 12px;
        white-space: normal;

    }

    .d365-migration-cst-third-table-header-cell-key,
    .d365-migration-cst-third-table-body-cell-key {
        width: 150px;

    }
}

.cst-sln-d365-header-content-mgrtion {
    text-align: center;
    padding-bottom: 40px;
}

.cst-mgrtion-soln-d365-p {
    color: white;
    margin-top: 10px;
    line-height: normal;
}

/* Migration End */
/* Customization  */
.d365-cstmi-cst-hero-section {
    position: relative;

    background: url('../images/services/customization/top-banner.webp') no-repeat center center;
    background-size: cover;

    padding: 160px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

/* Section fourth Styles */
.d365-cstomi-cst-section {
    background-color: #EFF0F5;

    padding: 50px 20px;

}

.d365-cstomi-cst-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Row (Heading, Paragraph & Image) */
.d365-cstomi-cst-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.d365-cstomi-cst-text-content {
    flex: 1;
    max-width: 50%;
}

.d365-cstomi-cst-heading {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    color: black;
    margin-top: 0;
}

.d365-cstomi-cst-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
}

.d365-cstomi-cst-image-wrapper {
    flex: 1;
    max-width: 50%;
}

.d365-cstomi-cst-header-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;

}

/* Feature Boxes Grid */
.d365-cstomi-cst-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
    margin-bottom: 50px;
}

.d365-cstomi-cst-feature-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

}

.d365-cstomi-cst-icon-wrapper {
    margin-bottom: 2px;
    width: 80px;

    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d365-cstomi-cst-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.d365-cstomi-cst-box-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 10px;
    color: black;
}

.d365-cstomi-cst-box-paragraph {
    font-size: 1rem;
    line-height: 1.5;
    color: black;
}

/* Button Styling */
.d365-cstomi-cst-button-wrapper {
    text-align: center;
}

.d365-cstomi-cst-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: white;
    color: black;
    border: 1px solid #C5C5C5;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.d365-cstomi-cst-button:hover {
    border-color: #494c9d;

    color: white;
    background-color: #494c9d;
}

/* ====================================
   RESPONSIVENESS (TABLET & MOBILE)
   ==================================== */

/* Tablet (769px to 1024px) */
@media screen and (max-width: 1024px) {
    .d365-cstomi-cst-header-row {
        flex-direction: column;

        text-align: center;
        margin-bottom: 40px;
    }

    .d365-cstomi-cst-text-content,
    .d365-cstomi-cst-image-wrapper {
        max-width: 100%;
        flex: none;
    }

    .d365-cstomi-cst-heading {
        font-size: 24px;
    }

    .d365-cstomi-cst-features-grid {
        gap: 20px;
    }
}

/* Mobile (Up to 768px) */
@media screen and (max-width: 768px) {
    .d365-cstomi-cst-box-heading {
        font-size: 17px;
        line-height: 1.4;
    }

    .d365-cstomi-cst-box-paragraph {
        font-size: 14px;
    }

    .d365-cstomi-cst-section {
        padding: 40px 15px;
    }

    .d365-cstomi-cst-heading {
        font-size: 20px;
    }

    .d365-cstomi-cst-paragraph {
        font-size: 14px;
    }

    /* Features stack on mobile */
    .d365-cstomi-cst-features-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .d365-cstomi-cst-feature-box {
        padding: 20px;
        text-align: left;
    }

    .d365-cstomi-cst-button {
        width: 100%;

        box-sizing: border-box;
    }

    .d365-cstomi-cst-icon-wrapper {
        margin-bottom: 0px;
        width: 60px;
        height: 60px;
    }

    .d365-cstomi-cst-button-wrapper {
        width: max-content;
        margin: auto;
    }

    .d365-cstomi-cst-button {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* Customization End */
/* Support */
.d365-spprt-cst-hero-section {
    position: relative;

    background: url('../images/services/support/banner-support.webp') no-repeat center center;
    background-size: cover;

    padding: 160px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

.d365-spprt-cst-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    color: white;
}

.d365-spprt-h4-2nd {
    color: black;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
    .d365-spprt-h4-2nd {
        color: black;
        font-size: 17px;
    }
}

/* -------------------------------------- */
/* SECTION STYLES (BACKGROUND & PADDING) */
/* -------------------------------------- */

.d365-spprt-box-section {
    background-color: #F5F6FD;

    padding: 4rem 1rem;
}

.d365-spprt-box-container {
    max-width: 1280px;

    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;

    padding-right: 1rem;

}

/* Media query for larger screens (sm:px-6, lg:px-8) */
@media (min-width: 640px) {
    .d365-spprt-box-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .d365-spprt-box-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* -------------------------------------- */
/* HEADER STYLES (HEADING & PARAGRAPH) */
/* -------------------------------------- */

.d365-spprt-box-header {
    text-align: center;
    margin-bottom: 3rem;

}

.d365-spprt-box-main-heading {
    font-size: 30px;

    font-weight: 500;

    color: black;

    margin-bottom: 1rem;

}

.d365-spprt-box-main-paragraph {
    font-size: 18px;

    color: black;

    max-width: 60rem;

    margin-left: auto;
    margin-right: auto;
}

/* Media query for heading responsiveness */
@media (min-width: 640px) {
    .d365-spprt-box-main-heading {
        font-size: 20px;
    }

    /* sm:text-4xl */
}

@media (min-width: 1024px) {
    .d365-spprt-box-main-heading {
        font-size: 28px;
    }

    /* lg:text-5xl */
}

/* -------------------------------------- */
/* BOX CARD STYLES */
/* -------------------------------------- */

.d365-spprt-box-grid-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

}

.d365-spprt-box-card {
    background-color: white;
    padding: 1.5rem;

    border-radius: 0.75rem;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    border: 1px solid #F7FAFC;

    transition: box-shadow 0.3s ease-in-out;
}

.d365-spprt-box-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

}

/* Box padding for larger screens */
@media (min-width: 640px) {
    .d365-spprt-box-card {
        padding: 2rem;
    }

    /* sm:p-8 */
}

/* -------------------------------------- */
/* BOX CONTENT LAYOUT (RESPONSIVE) */
/* -------------------------------------- */

.d365-spprt-box-content {
    display: flex;
    flex-direction: column;

    align-items: center;
    gap: 1.5rem;

}

.d365-spprt-box-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    margin-bottom: 1rem;

    width: 100%;

}

.d365-spprt-box-right-col {
    width: 100%;

    padding-top: 0;
}

/* Tablet/Desktop Layout (md:flex-row) */
@media (min-width: 768px) {
    .d365-spprt-box-content {
        flex-direction: row;

        gap: 1.5rem;

    }

    .d365-spprt-box-left-col {
        align-items: center;

        text-align: left;

        margin-bottom: 0;

        min-width: 25%;

        max-width: 25%;

        flex-shrink: 0;
    }

    .d365-spprt-box-right-col {
        min-width: 75%;

        max-width: 75%;

        padding-top: 0.25rem;

    }
}

/* Large Desktop Adjustments */
@media (min-width: 1024px) {
    .d365-spprt-box-left-col {
        min-width: 20%;

        max-width: 20%;

    }

    .d365-spprt-box-right-col {
        min-width: 80%;

        max-width: 80%;

    }
}

/* -------------------------------------- */
/* ICON AND TEXT STYLES */
/* -------------------------------------- */

.d365-spprt-box-icon-container {
    width: 60px;
    height: 60px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: black;
    margin-bottom: 0.75rem;
}

/* Image size inside the container */
.d365-spprt-box-icon-container img {
    width: 100%;
    height: 85px;
    object-fit: contain;
}

.d365-spprt-box-small-heading {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin: 0 0;
    text-align: center;
}

.d365-spprt-box-text {
    color: black;

    font-size: 1rem;

    line-height: 1.625;
    margin-bottom: 0;

}

@media(max-width: 768px) {
    .d365-spprt-box-main-heading {
        font-size: 20px;
        line-height: 1.4;
    }

    .d365-spprt-box-section {
        padding: 2rem 1rem;
    }

    .d365-spprt-box-main-paragraph {
        font-size: 14px;
        max-width: 100rem;
    }

    .d365-spprt-box-content {
        gap: 0.5rem;
        text-align: center;
    }

    .d365-spprt-box-text {
        font-size: 14px;
    }

    .d365-spprt-box-left-col {
        margin-bottom: 2px;
    }
}

/* Support End */
/* Staff Augmentation */
.d365-augmt-cst-hero-section {
    position: relative;

    background: url('../images/services/staff-augmentation/top-banner.webp') no-repeat center center;
    background-size: cover;

    padding: 160px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

.d365-staff-augmt-cst-hero-image {
    width: 100%;
    height: auto;
    display: block;
}


/* General Styles and Container */
.d365-sftaugmt-tbl-main-section {
    padding: 40px 15px;
    background-color: white;
    display: flex;
    justify-content: center;
}

.d365-sftaugmt-tbl-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;
    text-align: center;
    padding: 0;
}

/* Headings and Paragraph */
.d365-sftaugmt-tbl-small-heading {
    font-size: 18px;
    color: black;
    font-weight: 500;
    margin-bottom: 5px;
}

.d365-sftaugmt-tbl-main-heading {
    font-size: 30px;
    color: black;
    font-weight: 500;
    margin-bottom: 15px;
}

.d365-sftaugmt-tbl-paragraph {
    font-size: 18px;
    color: black;
    line-height: 1.6;
    margin-bottom: 33px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Table Specific Styles */
.d365-sftaugmt-tbl-table-wrapper {

    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.d365-sftaugmt-tbl-table {
    width: 100%;
    border-collapse: collapse;

    min-width: 850px;
}

.d365-sftaugmt-tbl-header-row {
    background-color: #D5DBED;

}

.d365-sftaugmt-tbl-header-cell {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    color: black;
    font-size: 16px;

}

.d365-sftaugmt-tbl-header-row th:first-child {
    border-top-left-radius: 12px;
}

.d365-sftaugmt-tbl-header-row th:last-child {
    border-top-right-radius: 12px;
}


.d365-sftaugmt-tbl-data-row {
    border-bottom: 1px solid #e0e0e0;
}

.d365-sftaugmt-tbl-data-row:last-child {
    border-bottom: none;
}

/* Footer ki corners ko border radius dete hain */
.d365-sftaugmt-tbl-data-row:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.d365-sftaugmt-tbl-data-row:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.d365-sftaugmt-tbl-white-bg {
    background-color: #ffffff;
}

.d365-sftaugmt-tbl-light-gray-bg {
    background-color: #F3F4F9;

}

.d365-sftaugmt-tbl-data-cell {
    padding: 15px;
    text-align: left;
    color: black;
    vertical-align: top;
    line-height: 1.4;
    font-size: 14px;
}

.d365-sftaugmt-tbl-criteria-cell {
    font-weight: 500;
    color: black;
    width: 25%;

}

/* Responsive Adjustments for Mobile and Tablet */

@media (max-width: 992px) {

    /* Tablet size */
    .d365-sftaugmt-tbl-main-heading {
        font-size: 24px;
    }

    .d365-sftaugmt-tbl-header-cell {
        padding: 18px 12px;
        font-size: 15px;
    }

    .d365-sftaugmt-tbl-data-cell {
        padding: 12px;
        font-size: 13px;
    }

    .d365-sftaugmt-tbl-table {
        min-width: 768px;

    }
}

@media (max-width: 767px) {
    .d365-impl-scnd-box-heading {
        font-size: 15px;
        margin-bottom: 10px;
    }

    /* Mobile size */
    .d365-sftaugmt-tbl-main-heading {
        font-size: 20px;
    }

    .d365-sftaugmt-tbl-paragraph {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .d365-sftaugmt-tbl-table {
        min-width: 650px;

    }

    /* Table data ki padding kam karenge */
    .d365-sftaugmt-tbl-header-cell,
    .d365-sftaugmt-tbl-data-cell {
        padding: 10px;
        font-size: 12px;
    }

    .d365-impl-thrd-main-section {
        padding: 50px 0 30px 0;
    }

    .d365-sftaugmt-tbl-main-section {
        padding: 30px 15px;
    }

    .d365-sftaugmt-tbl-small-heading {
        font-size: 16px;
    }
}

/* Tabs section */
/* *************************************************
        * Optimized CSS Section
        *************************************************
        */
:root {

    --d365-active-bg: #E2E4EDCC;

    --d365-inactive-bg: #E2E4ED40;

    --d365-text-color: #ffffff;
    --d365-dark-overlay: rgba(0, 0, 0, 0.4);
}

/* ---------------- General Styles ---------------- */

.d365-agmt-talent-section {
    padding: 50px 20px;
    background-image: url('../images/home-page/solution-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--d365-text-color);
}

.d365-agmt-talent-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.d365-agmt-talent-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 0;
    color: white;
    font-weight: 500;
}

.d365-agmt-talent-header p {
    font-size: 1.1em;
    color: white;
}

.d365-agmt-talent-main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* ---------------- Tab Items ---------------- */

.d365-agmt-talent-tabs-panel {
    width: 35%;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.d365-agmt-talent-tab-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    background: var(--d365-inactive-bg);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.d365-agmt-talent-tab-item:hover {
    background: #E2E4ED80;

}

.d365-agmt-talent-tab-item.d365-agmt-talent-active {

    background: var(--d365-active-bg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.d365-agmt-talent-tab-icon {
    width: 50px;
    height: 30px;
    margin-right: 5px;
    object-fit: contain;
}

.d365-agmt-talent-tab-item span {
    font-weight: 500;
    font-size: 1.1em;
    color: white;
}

.d365-agmt-talent-tab-item.d365-agmt-talent-active span {
    color: black;
}

/* ---------------- Right Content (Desktop) ---------------- */

.d365-agmt-talent-content-panel {
    width: 65%;
}

.d365-agmt-talent-content-block {
    display: none;

}

.d365-agmt-talent-content-block.d365-agmt-talent-active {
    display: block;

    animation: fadeIn 0.4s ease-out;

}

.d365-agmt-talent-content-block h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    margin-top: 0;
    color: white;
}

.d365-agmt-talent-content-block p {
    line-height: 1.6;
    margin-bottom: 0px;
    color: white;
    font-size: 15px;
}

.d365-agmt-talent-content-block h4 {
    font-size: 18px;
    margin-bottom: 0px;
    color: white;
    margin-top: 15px;
    font-weight: 500;
}

.d365-agmt-talent-content-block ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 0;
}

.d365-agmt-talent-content-block ul li {
    margin-bottom: 8px;
    color: white;
    font-size: 15px;
    position: relative;
    padding-left: 15px;
}

.d365-agmt-talent-content-block ul li::before {
    content: "•";

    color: white;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* ---------------- Accordion Content (Mobile) ---------------- */

.d365-agmt-talent-accordion-content {

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    background: #e2e4edcc;
    border-radius: 0 0 8px 8px;
    padding: 0 30px;

}

.d365-agmt-talent-accordion-content.d365-agmt-talent-active {

    max-height: 1000px;

    padding: 20px 30px 30px;

}

/* ---------------- Animation ---------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* *************************************************
        * Media Query (Max Width: 767px) for Mobile
        *************************************************
        */
@media (max-width: 767px) {
    .d365-agmt-talent-tab-item {
        padding: 10px 10px;
    }

    .d365-agmt-talent-tab-icon {
        width: 40px;
        height: 30px;
        margin-right: 0px;
    }

    .d365-agmt-talent-tab-item span {
        font-size: 14px;
    }

    .d365-agmt-talent-accordion-content h3 {
        font-size: 14px;
        font-weight: 500;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .d365-agmt-talent-accordion-content h4 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .d365-agmt-talent-accordion-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .d365-agmt-talent-accordion-content ul {
        padding-left: 15px;
    }

    .d365-agmt-talent-accordion-content ul li {
        font-size: 13px;
    }

    .d365-agmt-talent-section {
        padding: 30px 20px;
    }

    .d365-agmt-talent-header h2 {
        font-size: 20px;
    }

    .d365-agmt-talent-header {
        margin: 0px auto 30px;
    }

    .d365-agmt-talent-header p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .d365-agmt-talent-main-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .d365-agmt-talent-tabs-panel,
    .d365-agmt-talent-content-panel {
        width: 100%;
        gap: 20px;
    }

    /* Desktop content panel ko mobile pe hide kar do */
    .d365-agmt-talent-content-panel {
        display: none;
    }

    /* Tabs stacking ke liye */
    .d365-agmt-talent-tab-group {
        margin-bottom: 0px;

    }

    /* Active tab ki bottom border hata do taake accordion se mil jaye */
    .d365-agmt-talent-tab-item.d365-agmt-talent-active {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    /* Jab accordion open ho toh uske upar wale tab ki bottom radius set karo */
    .d365-agmt-talent-accordion-content.d365-agmt-talent-active+.d365-agmt-talent-tab-item {
        border-bottom-left-radius: 8px;

    }

    /* Jab accordion active ho, toh uske upar wala tab active rahe */
    .d365-agmt-talent-accordion-content.d365-agmt-talent-active {
        border-top: none;
    }
}

/* Tabs section End */
/* Staff Augmentation End */
/* About us page */
/* Base Styling for Hero Section */
.d365-about-pg-cst-hero-section {
    position: relative;
    background-image: url(../images/about/top-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 120px 0 60px 0;
}

/* Content Area ko overlay ke upar rakhne ke liye */
.d365-about-pg-cst-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Main Content Styling */
.d365-about-pg-cst-content-area {
    max-width: 800px;
    padding: 40px 0 0px 0;
}

.d365-about-pg-cst-title {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
}

.d365-about-pg-cst-subtitle {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.d365-about-pg-cst-paragraph {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 4px;
    color: white;
}


.d365-about-pg-cst-mission strong {
    font-weight: 600;
}

/* ------------------------------------------------ */
/* Responsive Design (Tablet - 768px and up) */
/* ------------------------------------------------ */

/* ------------------------------------------------ */
/* Responsive Design (Mobile - up to 767px) */
/* ------------------------------------------------ */
@media (max-width: 767px) {
    .d365-about-pg-cst-hero-section {
        padding: 100px 0 4px 0;
    }

    .d365-about-pg-cst-content-area {
        padding: 20px 0 10px 0;
        text-align: center;
    }

    .d365-about-pg-cst-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .d365-about-pg-cst-subtitle {
        font-size: 20px;

        margin-bottom: 15px;
        line-height: 1.4;
    }

    .d365-about-pg-cst-paragraph {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/*First section end */
/* Second section */
/* Section Background */
.d365-abt-scnd-section {
    background: #D2D7E4;
    padding: 50px 0;
    position: relative;
}

/* Container for max-width and centering */
.d365-abt-scnd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Main Content Wrapper (Flex container for Text Box and Image) */
.d365-abt-scnd-content-wrapper {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;

}

/* Left Side: Text Box Styling */
.d365-abt-scnd-text-box {
    flex: 1;
    padding: 40px 60px;
    background-color: #ffffff;
    flex-basis: 60%;
    max-width: 60%;
}

.d365-abt-scnd-heading {
    font-size: 36px;
    margin-top: 10px;
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
}

.d365-abt-scnd-paragraph {
    font-size: 18px;
    line-height: 1.7;
    color: black;
    font-weight: 400;
}

.d365-abt-scnd-bold-text {
    font-weight: 600;
    color: black;

}

/* Right Side: Image Container */
.d365-abt-scnd-image-container {
    flex: 1;

    flex-basis: 40%;
    max-width: 40%;
    overflow: hidden;

}

.d365-abt-scnd-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* ------------------------------------------------ */
/* Responsive Design (Tablet - up to 1024px) */
/* ------------------------------------------------ */
@media (max-width: 1024px) {
    .d365-abt-scnd-text-box {
        padding: 30px 40px;
        flex-basis: 55%;

        max-width: 55%;
    }

    .d365-abt-scnd-image-container {
        flex-basis: 45%;
        max-width: 45%;
    }

    .d365-abt-scnd-heading {
        font-size: 30px;
    }

    .d365-abt-scnd-paragraph {
        font-size: 16px;
    }
}

/* ------------------------------------------------ */
/* Responsive Design (Mobile - up to 767px) */
/* ------------------------------------------------ */
@media (max-width: 767px) {
    .d365-abt-scnd-paragraph {
        font-size: 14px;
    }

    .d365-abt-scnd-section {
        padding: 40px 0;

    }

    .d365-abt-scnd-content-wrapper {
        flex-direction: column-reverse;

        border-radius: 4px;

    }

    .d365-abt-scnd-text-box,
    .d365-abt-scnd-image-container {
        flex-basis: 100%;

        max-width: 100%;

    }

    .d365-abt-scnd-text-box {
        padding: 20px 20px;
        text-align: center;
    }

    .d365-abt-scnd-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .d365-abt-scnd-image {

        height: auto;
    }
}

/* Second section End */
/* Third section Start */
.d365-abt-thrd-section {
    background: #FFFFFF;
    padding: 50px 0;
}

.d365-abt-thrd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-abt-thrd-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.d365-abt-thrd-heading {
    font-size: 36px;
    font-weight: 500;
    color: black;
    margin-bottom: 15px;
    margin-top: 0;
}

.d365-abt-thrd-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
}

/* Main Content Wrapper (Using CSS Grid for complex layout) */
.d365-abt-thrd-main-content {
    display: grid;
    grid-template-columns: 30% 23.33% 23.33% 23.33%;
    grid-template-rows: repeat(2, 1fr);
    gap: 6px;
    align-items: stretch;
}

/* Left Side: Image Container */
.d365-abt-thrd-image-container {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    overflow: hidden;
}

.d365-abt-thrd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.d365-abt-thrd-services-grid {
    display: contents;
}

.d365-abt-thrd-services-grid>.d365-abt-thrd-service-box:nth-child(1) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background: #E6E9F0;
}

.d365-abt-thrd-services-grid>.d365-abt-thrd-service-box:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: #E6E9F0;
}

.d365-abt-thrd-services-grid>.d365-abt-thrd-service-box:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    background: #D8D9ED;
}

.d365-abt-thrd-services-grid>.d365-abt-thrd-service-box:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background: #D8D9ED;
}

.d365-abt-thrd-services-grid>.d365-abt-thrd-service-box:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    background: #E6E9F0;
}

.d365-abt-thrd-service-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid #f0f0f0;
    color: black;
    transition: all 0.3s ease-in-out;
}

.d365-abt-thrd-service-box:hover {
    border: 1px solid #6f72dd;
}

.d365-abt-thrd-service-icon {
    width: 42%;
    height: auto;
    margin-bottom: 15px;
}

.d365-abt-thrd-service-icon-1 {
    width: 30% !important;
}

.d365-abt-thrd-service-icon-2 {
    width: 30% !important;
}

.d365-abt-thrd-box-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.d365-abt-thrd-service-box:hover .d365-abt-thrd-box-text {
    color: #494c9d;
}

@media (max-width: 1024px) {
    .d365-abt-thrd-main-content {
        grid-template-columns: 30% 23.33% 23.33% 23.33%;
    }

    .d365-abt-thrd-box-text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .d365-abt-thrd-heading {
        font-size: 22px;
    }

    .d365-abt-thrd-service-icon-1 {
        width: 15% !important;
    }

    .d365-abt-thrd-service-icon {
        width: 20%;
        margin-bottom: 10px;
    }

    .d365-abt-thrd-service-box {
        align-items: center;
        text-align: center;
    }

    .d365-abt-thrd-image {
        height: auto;
    }

    .d365-abt-thrd-paragraph {
        font-size: 14px;
    }

    .d365-abt-thrd-section {
        padding: 40px 0;
    }

    .d365-abt-thrd-header-content {
        margin-bottom: 30px;
    }

    .d365-abt-thrd-main-content {
        display: flex;
        flex-direction: column;
    }

    .d365-abt-thrd-image-container,
    .d365-abt-thrd-services-grid>.d365-abt-thrd-service-box {
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto;
    }

    .d365-abt-thrd-image-container {
        height: 250px;
    }

    .d365-abt-thrd-service-box {
        padding: 20px;
        border-left: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
    }
}

/* Third section End */
/* Fourth section */
.d365-abt-forth-section {
    background: #FFFFFF;
    padding: 20px 0;
}

.d365-abt-forth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-abt-forth-header-area {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.d365-abt-forth-heading {
    font-size: 36px;
    font-weight: 500;
    color: black;
    line-height: 1.1;
    margin: 0;
    flex-basis: 35%;
    max-width: 35%;
}

.d365-abt-forth-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin: 0;
    flex-basis: 65%;
    max-width: 65%;
}

.d365-abt-forth-main-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.d365-abt-forth-list-container {
    flex-basis: 50%;
    max-width: 50%;
}

.d365-abt-forth-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.d365-abt-forth-list-item {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.d365-abt-forth-check-icon {
    font-size: 20px;
    color: #494c9d;
    margin-right: 15px;
    font-weight: 900;
}

.d365-abt-forth-image-container {
    flex-basis: 50%;
    max-width: 50%;
}

.d365-abt-forth-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.bg-colr-logs-abt {
    background-color: #E6E9F0;
}

@media (max-width: 1024px) {
    .d365-abt-forth-heading {
        font-size: 32px;
        flex-basis: 40%;
        max-width: 40%;
    }

    .d365-abt-forth-paragraph {
        font-size: 16px;
        flex-basis: 60%;
        max-width: 60%;
    }

    .d365-abt-forth-list-item {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .d365-abt-forth-check-icon {
        font-size: 16px;
        margin-right: 8px;
    }

    .d365-abt-forth-section {
        padding: 20px 0;
    }

    .d365-abt-forth-header-area {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
        margin-bottom: 30px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .d365-abt-forth-heading,
    .d365-abt-forth-paragraph {
        font-size: 22px;
        flex-basis: 100%;
        max-width: 100%;
    }

    .d365-abt-forth-paragraph {
        font-size: 14px;
        border-left: none;
        padding-left: 0;
    }

    .d365-abt-forth-main-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .d365-abt-forth-list-container,
    .d365-abt-forth-image-container {
        flex-basis: 100%;
        max-width: 100%;
    }

    .d365-abt-forth-list-item {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* Fourth section End */
/* Fifth Section */
.d365-aboutt-fifth-section {
    background-image: url(../images/about/our-vission-bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 500px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.d365-aboutt-fifth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.d365-aboutt-fifth-vision-box {
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 525px;
    width: 100%;
    margin-left: 50px;
}

/* Icon Styling */
.d365-aboutt-fifth-icon {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.d365-aboutt-fifth-heading {
    font-size: 30px;
    font-weight: 500;
    color: black;
    margin-top: 0;
    margin-bottom: 20px
}

.d365-aboutt-fifth-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin: 0;
}

@media (max-width: 1024px) {
    .d365-aboutt-fifth-section {
        padding: 40px 0;
        min-height: 500px;
    }

    .d365-aboutt-fifth-vision-box {
        max-width: 500px;
        margin-left: 20px;
        padding: 40px;
    }

    .d365-aboutt-fifth-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .d365-aboutt-fifth-section {
        padding: 10px 0;
        min-height: 400px;
        background-position: center center;
    }

    .d365-aboutt-fifth-container {
        justify-content: center;
    }

    .d365-aboutt-fifth-vision-box {
        max-width: 90%;
        margin-left: 0;
        padding: 30px 20px;
    }

    .d365-aboutt-fifth-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .d365-aboutt-fifth-paragraph {
        font-size: 14px;
    }
}

/* Fifth Section End */
/* CTA section  */
/* Section Base Styling */
.d365-about--CTA-cst-section {
    background: #E6E9F0;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container for max-width */
.d365-about--CTA-cst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* White CTA Box */
.d365-about--CTA-cst-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: stretch;
    /* Content aur image ki height equal rahe */
    overflow: hidden;
    /* Image corners ko theek rakhe */
}

/* Left Side: Text Content */
.d365-about--CTA-cst-text-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 65%;
    max-width: 65%;
}

.d365-about--CTA-cst-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: black;
    margin-top: 0;
    margin-bottom: 20px;
}

.d365-about--CTA-cst-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin-bottom: 30px;
}

/* Button Styling */
.d365-about--CTA-cst-button {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #494c9d;
    /* Black border jesa screenshot mein hai */
    color: #494c9d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    max-width: fit-content;
}

.d365-about--CTA-cst-button:hover {
    background-color: #494c9d;
    color: #FFFFFF;
}

/* Right Side: Image */
.d365-about--CTA-cst-image-container {
    flex-basis: 35%;
    max-width: 35%;
}

.d365-about--CTA-cst-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Image ko container mein fit kare */
    display: block;
}


/* ------------------------------------------------ */
/* Responsive Design (Tablet - up to 1024px) */
/* ------------------------------------------------ */
@media (max-width: 1024px) {
    .d365-about--CTA-cst-box {
        max-width: 90%;
        margin: 0 auto;
    }

    .d365-about--CTA-cst-text-content {
        padding: 40px 30px;
        flex-basis: 60%;
        max-width: 60%;
    }

    .d365-about--CTA-cst-image-container {
        flex-basis: 40%;
        max-width: 40%;
    }

    .d365-about--CTA-cst-heading {
        font-size: 25px;
    }
}

/* ------------------------------------------------ */
/* Responsive Design (Mobile - up to 767px) */
/* ------------------------------------------------ */
@media (max-width: 767px) {
    .d365-about--CTA-cst-section {
        padding: 40px 0;
    }

    .d365-about--CTA-cst-box {
        flex-direction: column-reverse;
        /* IMAGE ko text se pehle dikhane ke liye */
        border-radius: 8px;
        max-width: 100%;
    }

    .d365-about--CTA-cst-image-container {
        flex-basis: auto;
        max-width: 100%;
        height: 250px;
        /* Mobile par fixed height for image */
    }

    .d365-about--CTA-cst-text-content {
        padding: 30px 20px;
        text-align: center;
        flex-basis: 100%;
        max-width: 100%;
    }

    .d365-about--CTA-cst-heading {
        font-size: 20px;
    }

    .d365-about--CTA-cst-paragraph {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .d365-about--CTA-cst-button {
        padding: 5px 15px;
        font-size: 14px;
        max-width: max-content;
        margin: auto;
    }
}

/* CTA section End */
/* About us page End */
/* Pricing page */
.d36-prcng-cst-hero-section {
    background-image: url('../images/pricing/pricing-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 120px 0 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.d36-prcng-cst-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.d36-prcng-cst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}

.d36-prcng-cst-hero-content {
    padding-top: 50px;
}

.d36-prcng-cst-heading {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: white;
    padding: 0 15px;
}

@media (max-width: 992px) {

    .d36-prcng-cst-heading {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .d36-prcng-cst-hero-section {
        padding: 100px 0 50px 0;
    }

    .d36-prcng-cst-hero-content {
        padding-top: 30px;
    }

    .d36-prcng-cst-heading {
        font-size: 18px;
    }
}

/* Second section */
.d365-prcng-scnd-cst-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.d365-prcng-scnd-cst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-prcng-scnd-cst-content-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.d365-prcng-scnd-cst-text-col {
    flex: 1;
    padding-right: 20px;
}

.d365-prcng-scnd-cst-image-col {
    flex: 1;
    max-width: 50%;
}

.d365-prcng-scnd-cst-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 0;
    color: black;
}

.d365-prcng-scnd-cst-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 0;
}

.d365-prcng-scnd-cst-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.d365-prcng-scnd-cst-image {
    display: block;
    width: 100%;
    height: auto;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="#e0e0e0"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="20" fill="#888">Dummy Image Placeholder</text></svg>');
}

@media (max-width: 992px) {
    .d365-prcng-scnd-cst-section {
        padding: 40px 0;
    }

    .d365-prcng-scnd-cst-content-row {
        flex-direction: column;
        gap: 25px;
    }

    .d365-prcng-scnd-cst-text-col {
        padding-right: 0;
        order: 2;
        text-align: center;
    }

    .d365-prcng-scnd-cst-image-col {
        max-width: 100%;
        order: 1;
    }

    .d365-prcng-scnd-cst-heading {
        font-size: 25px;
    }

    .d365-prcng-scnd-cst-paragraph {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .d365-prcng-scnd-cst-section {
        padding: 40px 0;
    }

    .d365-prcng-scnd-cst-heading {
        font-size: 20px;
    }
}

/* Second section End */
/* Pricing sections */
:root {
    --d365-prcng-dtls-primary-bg: #F5F8FE;
    /* Light Blue/Gray Background */
    --d365-prcng-dtls-white-bg: #ffffff;
    --d365-prcng-dtls-dark-color: #1a1a1a;
    --d365-prcng-dtls-text-color: #555555;
    --d365-prcng-dtls-card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --d365-prcng-dtls-check-color: #1a1a1a;
    /* Black for Check Icons */
}

.d365-prcng-dtls-main-section {
    background: white;
}

.d365-prcng-dtls-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-prcng-dtls-module-section {
    padding: 50px 0 10px 0;
}

.d365-prcng-dtls-bg-light {
    background: var(--d365-prcng-dtls-primary-bg);
}

.d365-prcng-dtls-bg-white {
    background: var(--d365-prcng-dtls-white-bg);
}

.d365-prcng-dtls-section-heading {
    font-size: 28px;
    font-weight: 500;
    color: var(--d365-prcng-dtls-dark-color);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
}

.d365-prcng-dtls-sub-heading {
    font-size: 30px;
    font-weight: 500;
    color: var(--d365-prcng-dtls-dark-color);
    text-align: center;
    margin-bottom: 40px;
}

.d365-prcng-dtls-section-heading-bc-sub {
    font-size: 20px;
    font-weight: 400;
    color: black;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.h-mrgn-tp-zero {
    margin-top: 0;
}

.d365-prcng-dtls-card-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    /* Space between card rows and descriptions */
    flex-wrap: wrap;
}

/* Pricing Card Styling */
.d365-prcng-dtls-card {
    background-color: var(--d365-prcng-dtls-white-bg);
    border-radius: 12px;
    box-shadow: var(--d365-prcng-dtls-card-shadow);
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
    flex-basis: 220px;
    /* Base width for wrapping */
    max-width: 280px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.d365-prcng-dtls-card-icon {
    color: #494c9d;
    font-size: 30px;
    margin-bottom: 15px;
}

.d365-prcng-dtls-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--d365-prcng-dtls-dark-color);
    margin-bottom: 5px;
    line-height: 1.4;
}

.d365-prcng-dtls-card-storage {
    font-size: 13px;
    color: #000000;
    margin-bottom: 15px;
}

.d365-prcng-dtls-card-price {
    font-size: 36px;
    font-weight: 600;
    color: #494c9d;
    margin-bottom: 0px;
}

.d365-prcng-dtls-card-frequency {
    font-size: 14px;
    color: #000000;
    font-weight: 500;

}

.d365-prcng-dtls-description-box {
    background-color: var(--d365-prcng-dtls-white-bg);
    border-radius: 8px;
    padding: 15px 25px;
    margin: 0 auto 60px auto;
    max-width: 900px;
    text-align: center;
    font-size: 15px;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* For Modules without a separate description box (like SCM, HR etc.) */
.d365-prcng-dtls-text-center {
    text-align: center;
    font-size: 0.95rem;
    color: var(--d365-prcng-dtls-text-color);
    margin-top: -20px;
    /* Bring it closer to the cards */
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .d365-prcng-dtls-module-section {
        padding: 40px 0;
    }

    .d365-prcng-dtls-section-heading {
        font-size: 24px;
    }

    .d365-prcng-dtls-section-heading-bc-sub {
        font-size: 18px;
    }

    .d365-prcng-dtls-sub-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .d365-prcng-dtls-card-row {
        gap: 15px;
        /* Allow cards to wrap easily, and take up roughly half the screen */
        justify-content: space-around;
    }

    .d365-prcng-dtls-card {
        flex-basis: 45%;
        /* Two cards per row on tablet */
        padding: 25px 15px;
    }

    /* Specific fix for 2-card layouts */
    .d365-prcng-dtls-card-row.d365-prcng-dtls-two-cards .d365-prcng-dtls-card {
        flex-basis: 45%;
    }

    .d365-prcng-dtls-description-box {
        margin-bottom: 40px;
        max-width: 90%;
    }

    .d365-prcng-dtls-card-price {
        font-size: 30px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .d365-prcng-dtls-card-title {
        font-size: 16px;
    }

    .d365-prcng-dtls-module-section {
        padding: 30px 0;
    }

    .d365-prcng-dtls-sub-heading {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .d365-prcng-dtls-card-row {
        gap: 20px;
        margin-bottom: 30px;
        /* Single column layout on mobile */
    }

    .d365-prcng-dtls-card {
        flex-basis: 100%;
        /* Single card per row on mobile */
        max-width: 100%;
    }

    .d365-prcng-dtls-card i {
        font-size: 20px;
    }

    .d365-prcng-dtls-card-price {
        font-size: 25px;
    }

    .d365-prcng-dtls-description-box {
        margin-bottom: 30px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .d365-prcng-dtls-text-center {
        margin-bottom: 30px;
    }

    .d365-prcng-dtls-section-heading {
        font-size: 20px;

    }

    .d365-prcng-dtls-section-heading-bc-sub {
        font-size: 14px;
    }

}

/* Pricing sections End */
/* Fourth Section pricing */

.d365-prcng-forth-section {
    padding: 20px 0 60px 0;
    background-color: #ffffff;
}

.d365-prcng-forth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-prcng-forth-heading {
    font-size: 36px;
    font-weight: 500;
    color: black;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
}

.d365-prcng-forth-card-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.d365-prcng-forth-card {
    background-color: #D8DDE6;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
    flex-basis: 250px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.d365-prcng-forth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.d365-prcng-forth-card-icon-wrapper {
    margin-bottom: 20px;
}

.d365-prcng-forth-card-icon {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    object-fit: contain;
    background-color: transparent;
}

.d365-prcng-forth-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
    line-height: 1.3;
}

.d365-prcng-forth-card-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: black;
    margin-bottom: 10px;
}

.d365-prcng-forth-card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: black;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .d365-prcng-forth-section {
        padding: 10px 0 30px 0;
    }

    .d365-prcng-forth-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .d365-prcng-forth-card-row {
        gap: 15px;
        flex-wrap: wrap;
    }

    .d365-prcng-forth-card {
        flex-basis: 45%;
        max-width: 48%;
        padding: 25px 15px;
    }

}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .d365-prcng-forth-card-title {
        font-size: 17px;
        font-weight: 500;
    }

    .d365-prcng-forth-card-description {
        font-size: 13px;
    }

    .d365-prcng-forth-section {
        padding: 10px 0 30px 0;
    }

    .d365-prcng-forth-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .d365-prcng-forth-card-row {
        gap: 20px;
        flex-wrap: wrap;
    }

    .d365-prcng-forth-card {
        flex-basis: 100%;
        max-width: 100%;
        min-height: auto;
        flex-wrap: wrap;
    }
}

/* Fourth Section pricing End */

/* Fifth section */
.d365-pcrng-ffth-section {
    padding: 60px 0;
    background-color: #F5F8FE;
}

.d365-pcrng-ffth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d365-pcrng-ffth-content-wrapper {
    /* Card BG: #ffffff (previously --d365-pcrng-ffth-card-bg) */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.d365-pcrng-ffth-image-col {
    flex-basis: 40%;
    max-width: 40%;
}

.d365-pcrng-ffth-image {
    display: block;
    width: 90%;
    height: 100%;
    object-fit: cover;
    min-height: auto;
    background-color: white;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="#1a1a1a"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="20" fill="#ffffff">Image Placeholder</text></svg>');
}

.d365-pcrng-ffth-text-col {
    flex-basis: 50%;
    max-width: 50%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.d365-pcrng-ffth-heading {
    font-size: 36px;
    font-weight: 500;
    color: black;
    margin-top: 0;
    margin-bottom: 30px;
}

.d365-pcrng-ffth-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.d365-pcrng-ffth-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
    color: black;
}

.d365-pcrng-ffth-check-icon {
    color: #494c9d;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
}

.d365-pcrng-ffth-feature-title {
    font-weight: 600;
    margin-right: 5px;
}

.d365-pcrng-ffth-feature-description {
    font-weight: 400;
}

/*
*************************************************
* Responsiveness
*************************************************
*/

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .d365-pcrng-ffth-section {
        padding: 60px 0;
    }

    .d365-pcrng-ffth-content-wrapper {
        flex-direction: column;
    }

    .d365-pcrng-ffth-image-col,
    .d365-pcrng-ffth-text-col {
        flex-basis: 100%;
        max-width: 100%;
    }

    .d365-pcrng-ffth-text-col {
        padding: 40px 30px;
    }

    .d365-pcrng-ffth-heading {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: center;
    }

    .d365-pcrng-ffth-image {
        width: 60%;
        height: 100%;
        margin: auto;
    }

    .d365-pcrng-ffth-feature-item {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .d365-pcrng-ffth-section {
        padding: 40px 0;
    }

    .d365-pcrng-ffth-text-col {
        padding: 30px 20px;
    }

    .d365-pcrng-ffth-heading {
        font-size: 18px;
    }

    .d365-pcrng-ffth-feature-title {
        font-size: 14px;
    }

    .d365-pcrng-ffth-feature-description {
        font-size: 14px;
    }

    .d365-pcrng-ffth-feature-item {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .d365-pcrng-ffth-check-icon {
        font-size: 1rem;
    }

    .d365-pcrng-ffth-image {
        width: 100%;
    }
}

/* Fifth section End */
/* CTA Section */
/* Section Base Styling */
.d365-prcng--CTA-cst-section {
    background: #E6E9F0;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container for max-width */
.d365-prcng--CTA-cst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* White CTA Box */
.d365-prcng--CTA-cst-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: stretch;
    /* Content aur image ki height equal rahe */
    overflow: hidden;
    /* Image corners ko theek rakhe */
    padding: 20px 20px 20px 0;
}

/* Left Side: Text Content */
.d365-prcng--CTA-cst-text-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 65%;
    max-width: 65%;
}

.d365-prcng--CTA-cst-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: black;
    margin-top: 0;
    margin-bottom: 20px;
}

.d365-prcng--CTA-cst-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin-bottom: 30px;
}

/* Button Styling */
.d365-prcng--CTA-cst-button {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #494c9d;
    /* Black border jesa screenshot mein hai */
    color: #494c9d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    max-width: fit-content;
}

.d365-prcng--CTA-cst-button:hover {
    background-color: #494c9d;
    color: #FFFFFF;
}

/* Right Side: Image */
.d365-prcng--CTA-cst-image-container {
    flex-basis: 35%;
    max-width: 35%;
}

.d365-prcng--CTA-cst-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Image ko container mein fit kare */
    display: block;
}


/* ------------------------------------------------ */
/* Responsive Design (Tablet - up to 1024px) */
/* ------------------------------------------------ */
@media (max-width: 1024px) {
    .d365-prcng--CTA-cst-box {
        max-width: 90%;
        margin: 0 auto;
    }

    .d365-prcng--CTA-cst-text-content {
        padding: 40px 30px;
        flex-basis: 60%;
        max-width: 60%;
    }

    .d365-prcng--CTA-cst-image-container {
        flex-basis: 40%;
        max-width: 40%;
    }

    .d365-prcng--CTA-cst-heading {
        font-size: 25px;
    }
}

/* ------------------------------------------------ */
/* Responsive Design (Mobile - up to 767px) */
/* ------------------------------------------------ */
@media (max-width: 767px) {
    .d365-prcng--CTA-cst-section {
        padding: 40px 0;
    }

    .d365-prcng--CTA-cst-box {
        flex-direction: column-reverse;
        /* IMAGE ko text se pehle dikhane ke liye */
        border-radius: 8px;
        max-width: 100%;
        padding: 20px 20px 20px 20px;
    }

    .d365-prcng--CTA-cst-image-container {
        flex-basis: auto;
        max-width: 100%;
        height: auto;
    }

    .d365-prcng--CTA-cst-text-content {
        padding: 30px 20px;
        text-align: center;
        flex-basis: 100%;
        max-width: 100%;
    }

    .d365-prcng--CTA-cst-heading {
        font-size: 20px;
    }

    .d365-prcng--CTA-cst-paragraph {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .d365-prcng--CTA-cst-button {
        padding: 5px 15px;
        font-size: 14px;
        max-width: max-content;
        margin: auto;
    }
}

/* CTA Section End */
/* Pricing page End */
/* BC solution */
/* First section */
.d365-frst-sctn-solu-main-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 115px 40px 40px 40px;
    color: black;
    position: relative;
}

.bc-bg-banner {
    background-image: url('../images/solutions/bc/bc-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.finance-bg-banner {
    background-image: url('../images/solutions/finance/header-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.supply-chain-bg-banner {
    background-image: url('../images/solutions/supply-chain/sc-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hr-bg-banner {
    background-image: url('../images/solutions/hr/main-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sales-bg-banner {
    background-image: url('../images/solutions/sales/main-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.customer-bg-banner {
    background-image: url('../images/solutions/customer-service/customer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.d365-frst-sctn-solu-container {
    max-width: 1200px;
    display: flex;
    gap: 40px;
}

.d365-frst-sctn-solu-content-left {
    flex: 1;
    max-width: 60%;
}

.d365-frst-sctn-solu-heading-top {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 0px;
    opacity: 0.9;
    color: black;
}

.d365-frst-sctn-solu-main-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: black;
}

.d365-frst-sctn-solu-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    color: black;
}

.d365-frst-sctn-solu-description-wht {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    color: white;
}

.d365-frst-sctn-solu-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid black;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: black;
}

.d365-frst-sctn-solu-cta-button:hover {
    background: #6f72dd;
    color: white;
    border: 1px solid #6f72dd;
}

.d365-frst-sctn-solu-cta-arrow {
    font-weight: 600;
}

.d365-frst-sctn-solu-image-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 40%;
}

.d365-frst-sctn-solu-image-right img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .d365-frst-sctn-solu-main-section {
        padding: 80px 20px;
    }

    .d365-frst-sctn-solu-container {
        flex-direction: column;
        gap: 0px;
    }

    .d365-frst-sctn-solu-content-left {
        max-width: 100%;
        order: 2;
        text-align: center;
    }

    .d365-frst-sctn-solu-image-right {
        max-width: 100%;
        justify-content: center;
        order: 1;
    }

    .d365-frst-sctn-solu-image-right img {
        max-width: 350px;
    }

    .d365-frst-sctn-solu-main-title {
        font-size: 25px;
    }

    .d365-frst-sctn-solu-heading-top {
        font-size: 25px;
    }

    .d365-frst-sctn-solu-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .d365-frst-sctn-solu-description-wht {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .d365-frst-sctn-solu-main-section {
        padding: 100px 15px 30px 15px;
    }

    .d365-frst-sctn-solu-main-title {
        font-size: 20px;
    }

    .d365-frst-sctn-solu-heading-top {
        font-size: 18px;
        margin-top: 0;
    }

    .d365-frst-sctn-solu-image-right img {
        max-width: 100%;
    }

    .d365-frst-sctn-solu-cta-button {
        gap: 4px;
        padding: 8px 20px;
        border-radius: 5px;
        font-weight: 500;
        font-size: 13px;
    }
}

/* First section End */
/* second section */
.d365-solu-scnd-sctn-main-section {
    background-color: white;
    padding: 50px 20px;
    color: black;
}

.d365-solu-scnd-sctn-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.d365-solu-scnd-sctn-sub-heading {
    font-size: 20px;
    font-weight: 500;
    color: #0f3ad5;
    margin-bottom: 8px;
    margin-top: 0;
}

.d365-solu-scnd-sctn-main-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1.2;
    max-width: 700px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

.d365-solu-scnd-sctn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.d365-solu-scnd-sctn-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.d365-solu-scnd-sctn-icon-container {
    margin-bottom: 15px;
}

.d365-solu-scnd-sctn-icon-container img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #f3f4f6;
}

.d365-solu-scnd-sctn-card-text {
    font-size: 18px;
    line-height: 1.5;
    color: black;
}

@media (max-width: 992px) {
    .d365-solu-scnd-sctn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }

    .d365-solu-scnd-sctn-card-text {
        font-size: 16px;
    }

    .d365-solu-scnd-sctn-main-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .d365-solu-scnd-sctn-main-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .d365-solu-scnd-sctn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }

    .d365-solu-scnd-sctn-card-text {
        font-size: 16px;
    }

    .d365-solu-scnd-sctn-sub-heading {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .d365-solu-scnd-sctn-main-section {
        padding: 30px 10px 8px 10px;
    }

    .d365-solu-scnd-sctn-main-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .d365-solu-scnd-sctn-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .d365-solu-scnd-sctn-card-text {
        font-size: 14px;
    }

    .d365-solu-scnd-sctn-icon-container img {
        width: 50px;
        height: 50px;
    }
}

/* second section End */
/* Third tabs section */
.d365-thrd-sect-solu-main-section {
    background: #f2f3ff;
    padding: 50px 20px;
    color: black;
    box-sizing: border-box;
}

.d365-thrd-sect-solu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.d365-thrd-sect-solu-sub-heading {
    font-size: 20px;
    font-weight: 500;
    color: #0f3ad5;
    margin-bottom: 8px;
    line-height: 1.4;
    margin-top: 0;
}

.d365-thrd-sect-solu-main-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.3;
    margin-top: 0;
}

.d365-thrd-sect-solu-content-wrapper {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.d365-thrd-sect-solu-tabs-list {
    flex: 1;
    max-width: 450px;
}

.tab-header {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 15px 0;
    cursor: pointer;
    line-height: 1.3;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.2s ease, font-weight 0.2s ease;
    color: black;
    user-select: none;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d365-thrd-sect-solu-tab-item:last-child .tab-header {
    border-bottom: none;
}

.d365-thrd-sect-solu-tab-item.active .tab-header {
    color: #0f3ad5;
    font-weight: 600;
}

.d365-thrd-sect-solu-tab-item.active .tab-icon {
    color: #0f3ad5;
}

.tab-icon {
    font-size: 1rem;
    color: black;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s ease;
    width: 1rem;
    text-align: right;
}

.d365-thrd-sect-solu-right-content {
    flex: 1.5;
    display: block;
    position: relative;
    min-height: 400px;
}

.desktop-content-item {
    display: none;
    transition: opacity 0.3s ease;
}

.desktop-content-item.active {
    display: block;
}

.desktop-content-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.d365-thrd-sect-solu-overlay-box {
    position: absolute;
    bottom: 40px;
    left: -80px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    text-align: left;
}

.d365-thrd-sect-solu-overlay-box h4 {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin-bottom: 5px;
    margin-top: 0;
}

.d365-thrd-sect-solu-overlay-box p {
    font-size: 15px;
    color: black;
    line-height: 1.5;
    margin-bottom: 0;
}

.d365-thrd-sect-solu-mobile-content {
    display: none;
    padding-bottom: 20px;
    padding-top: 10px;
}

.d365-thrd-sect-solu-mobile-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 16px;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.d365-thrd-sect-solu-mobile-box {
    position: static;
    width: auto;
    max-width: 100%;
    margin: 0;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}


@media (max-width: 768px) {
    .d365-thrd-sect-solu-main-title {
        font-size: 22px;
    }

    .d365-thrd-sect-solu-content-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .d365-thrd-sect-solu-tabs-list {
        max-width: 100%;
    }

    .d365-thrd-sect-solu-right-content {
        display: none;
    }

    .d365-thrd-sect-solu-tab-item.active .d365-thrd-sect-solu-mobile-content {
        display: block;
    }

    .tab-icon.fa-check {
        display: none;
    }

    .tab-icon.fas.fa-chevron-right {
        display: inline-block;
    }

    .d365-thrd-sect-solu-tab-item.active .tab-icon {
        transform: rotate(90deg);
    }

    .d365-thrd-sect-solu-overlay-box h4 {
        font-size: 16px;
    }

    .d365-thrd-sect-solu-overlay-box p {
        font-size: 14px;
    }

    .d365-thrd-sect-solu-overlay-box {
        padding: 15px;
    }

    .d365-thrd-sect-solu-sub-heading {
        font-size: 16px;
    }
}

@media (max-width: 600px) {


    .d365-thrd-sect-solu-main-section {
        padding: 30px 15px;
    }

    .d365-thrd-sect-solu-main-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .tab-header {
        font-size: 15px;
        padding: 12px 0;
    }

    .tab-icon {
        font-size: 13px;
    }

    .d365-thrd-sect-solu-overlay-box h4 {
        font-size: 16px;
    }

    .d365-thrd-sect-solu-overlay-box p {
        font-size: 14px;
    }

    .d365-thrd-sect-solu-overlay-box {
        padding: 15px;
    }
}

/* Third tabs section End */
/* Fourth Section */
.d365-solu-pg-frth-sect-main-section {
    background-image: url('../images/home-page/solution-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    box-sizing: border-box;
}

.d365-solu-pg-frth-sect-container {
    max-width: 1200px;
    margin: 0 auto;
}

.d365-solu-pg-frth-sect-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    /* Blur effect */
    border-radius: 16px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease;
}

.d365-solu-pg-frth-sect-card:hover {
    transform: translateY(-5px);
}

.d365-solu-pg-frth-sect-top-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}

.d365-solu-pg-frth-sect-icon-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.d365-solu-pg-frth-sect-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    display: block;
}


.d365-solu-pg-frth-sect-icon-heading h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: white;
}

.d365-solu-pg-frth-sect-sub-text {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.5;
    color: white;
}

.d365-solu-pg-frth-sect-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 0;
    margin-top: 0;
}

.d365-solu-pg-frth-sect-checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.d365-solu-pg-frth-sect-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.d365-solu-pg-frth-sect-check-icon {
    color: #ffffff;
    font-size: 1.4rem;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.d365-solu-pg-frth-sect-checklist-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.d365-solu-pg-frth-sect-checklist-content p {
    font-size: 17px;
    color: white;
    margin: 0;
}

@media (max-width: 992px) {
    .d365-solu-pg-frth-sect-top-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .d365-solu-pg-frth-sect-main-section {
        padding: 40px 15px;
    }

    .d365-solu-pg-frth-sect-card {
        padding: 20px;
    }

    .d365-solu-pg-frth-sect-icon-heading h3 {
        font-size: 18px;
    }

    .d365-solu-pg-frth-sect-sub-text {
        font-size: 14px;
    }

    .d365-solu-pg-frth-sect-checklist li {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .d365-solu-pg-frth-sect-check-icon {
        font-size: 16px;
        margin-right: 10px;
        margin-top: 3px;
    }

    .d365-solu-pg-frth-sect-checklist {
        margin-top: 22px;
    }

    .d365-solu-pg-frth-sect-checklist-content h4 {
        font-size: 14px;
    }

    .d365-solu-pg-frth-sect-checklist-content p {
        font-size: 14px;
    }

    .d365-solu-pg-frth-sect-paragraph {
        font-size: 14px;
    }

    .d365-solu-pg-frth-sect-icon-heading {
        align-items: center;
    }

    .d365-solu-pg-frth-sect-icon {
        margin-top: 0px;
        width: 28px;
        height: 28px;
    }
}

/* Fourth Section End */
/* Fifth section */
.d365-fifth-sct-solu-pg-main-section {
    background: #F5F6FB;
    padding: 50px 20px;
    box-sizing: border-box;
}

.d365-fifth-sct-solu-pg-container {
    max-width: 1200px;
    margin: 0 auto;
}

.d365-fifth-sct-solu-pg-small-heading {
    font-size: 20px;
    font-weight: 500;
    color: #0f3ad5;
    text-align: left;
    margin-top: 0;
    margin-bottom: 5px;
}

.d365-fifth-sct-solu-pg-main-heading {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    text-align: left;
    margin-top: 0;
    margin-bottom: 50px;
    line-height: 1.2;
}

.d365-fifth-sct-solu-pg-content-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.d365-fifth-sct-solu-pg-left-col {
    flex: 1;
    min-width: 0;
}

.d365-fifth-sct-solu-pg-full-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    display: block;
    margin: 0 auto;
}

.d365-fifth-sct-solu-pg-right-col {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.d365-fifth-sct-solu-pg-feature-box {
    padding: 1px 0;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.d365-fifth-sct-solu-pg-feature-box:hover .d365-fifth-sct-solu-pg-icon-wrapper {
    transform: translateY(-5px);
}

.d365-fifth-sct-solu-pg-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border-radius: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.d365-fifth-sct-solu-pg-icon-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.d365-fifth-sct-solu-pg-text-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.d365-fifth-sct-solu-pg-text-content p {
    font-size: 0.95rem;
    color: black;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .d365-fifth-sct-solu-pg-main-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .d365-fifth-sct-solu-pg-content-row {
        flex-direction: column;
        gap: 30px;
    }

    .d365-fifth-sct-solu-pg-left-col {
        order: 1;
    }

    .d365-fifth-sct-solu-pg-right-col {
        order: 2;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .d365-fifth-sct-solu-pg-small-heading {
        font-size: 16px;
        text-align: center;
    }

    .d365-fifth-sct-solu-pg-main-section {
        padding: 30px 15px;
    }

    .d365-fifth-sct-solu-pg-main-heading {
        font-size: 20px;
        margin-bottom: 30px;
        text-align: center;
    }

    .d365-fifth-sct-solu-pg-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .d365-fifth-sct-solu-pg-icon-img {
        width: 30px;
        height: 30px;
    }

    .d365-fifth-sct-solu-pg-text-content h4 {
        font-size: 15px;
    }

    .d365-fifth-sct-solu-pg-text-content p {
        font-size: 13px;
    }

    .d365-fifth-sct-solu-pg-full-image {
        max-width: 90%;
    }
}

/* Fifth section End */
.mrgb-p {
    margin-bottom: 40px;
}

@media(max-width:600px) {
    .mrgb-p {
        margin-bottom: 20px;
        font-size: 14px;
    }
}

/* BC solution End */
/* Finance second */
.d365-solu-cst-nw-scts-section {
    background-color: white;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.d365-solu-cst-nw-scts-container {
    max-width: 1280px;
    /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    /* px-4 */
    padding-right: 1rem;
}

/* Grid Layout - Mobile First (Single Column, Image on Top) */
.d365-solu-cst-nw-scts-grid-layout {
    display: flex;
    /* Confirm ke flexbox use ho raha hai */
    flex-direction: row;
    /* Columns ko side-by-side layein */
    align-items: center;
    /* Items ko top se align karein */
    gap: 3rem;
}

/* Mobile Order: Image (Left Col) is Order 1, Content (Right Col) is Order 2 */
.d365-solu-cst-nw-scts-left-col {
    order: 1;
    width: 50%;
}

.d365-solu-cst-nw-scts-right-col {
    order: 2;
    /* Content below image for mobile */
    width: 50%;
}

/* Image Styling */
.d365-solu-cst-nw-scts-image-wrapper {
    width: 100%;
    transition: transform 0.5s;
    text-align: center;
}

.d365-solu-cst-nw-scts-image-wrapper:hover {
    transform: scale(1.02);
}

.d365-solu-cst-nw-scts-image-container {
    width: 100%;
    /* Apne parent (50% left col) ki poori jagah lein */
    height: auto;
}

.d365-solu-cst-nw-scts-image-tag-scm {
    width: 100%;
    height: auto;
}

.d365-solu-cst-nw-scts-image-tag-cstomer {
    width: 65%;
    height: auto;
}

/* Content Styling */


.d365-solu-cst-nw-scts-main-heading {
    font-size: 30px;
    font-weight: 500;
    color: black;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.d365-solu-cst-nw-scts-small-heading {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: #0f3ad5;
    margin-bottom: 0;
    margin-top: 0px;
    line-height: 1.3;
}

.d365-solu-cst-nw-scts-paragraph {
    font-size: 18px;
    color: black;
    line-height: 1.625;
    margin-bottom: 2rem;
}

/* Check Points List Styling */
.d365-solu-cst-nw-scts-checklist {
    list-style: none;
    /* Default list style hataya */
    padding: 0;
    margin: 0;
}

.d365-solu-cst-nw-scts-list-item {
    display: flex;
    align-items: flex-start;
    color: #374151;
    /* text-gray-700 */
    margin-bottom: 1rem;
    /* space-y-4 ko replace kiya */
}

.d365-solu-cst-nw-scts-list-item:last-child {
    margin-bottom: 0;
}

/* Checkmark icon ke liye custom style (pseudo-element) */
.d365-solu-cst-nw-scts-list-item::before {
    content: "\2713";
    /* Unicode for checkmark */
    color: #214296;
    /* Checkpoint color */
    font-weight: 900;
    /* font-extrabold */
    margin-right: 0.75rem;
    /* ml-2 + spacing */
    font-size: 1.25rem;
    /* Larger checkmark */
    line-height: 1.5;
    /* Align with text */
    flex-shrink: 0;
}

.d365-solu-cst-nw-scts-list-title {
    display: block;
    color: black;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.d365-solu-cst-nw-scts-list-desc {
    display: block;
    color: black;
    font-size: 1rem;
}




@media (max-width: 992px) {
    .d365-solu-cst-nw-scts-main-heading {
        text-align: center;
    }

    .d365-solu-cst-nw-scts-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .d365-solu-cst-nw-scts-list-title {
        font-size: 16px;
    }

    .d365-solu-cst-nw-scts-list-desc {
        font-size: 14px;
    }

    .d365-solu-cst-nw-scts-paragraph {
        font-size: 16px;
        text-align: center;
    }

    .d365-solu-cst-nw-scts-grid-layout {
        display: block;
    }

    .d365-solu-cst-nw-scts-image-wrapper img {
        width: 50%;
        height: auto;
    }

    .d365-solu-cst-nw-scts-container {
        padding-left: 2rem;
        /* lg:px-8 */
        padding-right: 2rem;
    }

    /* Desktop Order: Image (Left Col) is Order 1, Content (Right Col) is Order 2 */
    .d365-solu-cst-nw-scts-left-col {
        order: 1;
        text-align: center;
        width: 100%;
    }

    .d365-solu-cst-nw-scts-right-col {
        order: 2;
        width: 100%;
    }

    .d365-solu-cst-nw-scts-image-wrapper {
        margin-bottom: 15px;
    }

    .d365-solu-cst-nw-scts-small-heading {
        font-size: 16px;
        text-align: center;

    }
}

/* Tablet/Desktop Styles (Media Query for large screens, 1024px) */
@media (max-width: 767px) {

    /* sm: padding adjust */
    .d365-solu-cst-nw-scts-container {
        padding-left: 1.5rem;
        /* sm:px-6 */
        padding-right: 1.5rem;
    }

    .d365-solu-cst-nw-scts-grid-layout {
        display: block;
    }

    .d365-solu-cst-nw-scts-image-wrapper img {
        width: 80%;
        height: auto;
    }

}


@media (max-width: 640px) {
    .d365-solu-cst-nw-scts-main-heading {
        font-size: 18px;
        text-align: center;
    }
}

/* Finance second End */
/* Finance third */
.d365-thrd-sect-solu-main-title-finn {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
    margin-top: 0;
}

.finn-d365-prg {
    max-width: 800px;
    font-size: 18px;
    margin-bottom: 30px;
}

.d365-solu-pg-frth-sect-checklist-finn {
    list-style: none;
    margin-top: 12px;
    margin-bottom: 0;
    padding: 0;
}

.d365-solu-pg-frth-sect-checklist-finn li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.d365-solu-pg-frth-sect-check-icon-finn {
    color: black;
    font-size: 16px;
    margin-right: 5px;
    margin-top: 5px;
    flex-shrink: 0;
}

.d365-solu-pg-frth-sect-checklist-content-finn p {
    font-size: 16px;
    color: black;
    margin: 0;
}

@media(max-width:768px) {
    .d365-thrd-sect-solu-main-title-finn {
        font-size: 22px;
    }

    .finn-d365-prg {
        max-width: fit-content;
        font-size: 16px;
        margin-bottom: 5px;
    }
}

@media (max-width: 600px) {
    .txt-cntr-mo {
        text-align: center;
    }

    .d365-thrd-sect-solu-main-title-finn {
        font-size: 20px;
    }

    .d365-solu-pg-frth-sect-check-icon-finn {
        font-size: 16px;
        margin-right: 10px;
        margin-top: 3px;
    }

    .d365-solu-pg-frth-sect-checklist-content-finn p {
        font-size: 14px;
    }
}

/* Finance third End */
/* Fourth section finance  */
.d365-finn-two-boxs-sct-section {
    padding: 50px 20px;
    /* Default Desktop Padding */
    position: relative;
    overflow: hidden;
}

/* Background Image and Overlay */
.d365-finn-two-boxs-sct-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dummy Background Image - Aap isko replace kar sakte hain */
    background-image: url('../images/home-page/solution-bg.webp');
    background-size: cover;
    background-position: center;
    /* Blue/Violet Tint Overlay jaisa screenshot mein hai */
    background-color: rgba(33, 66, 150, 0.9);
    /* Dark Blue/Violet tint */
    z-index: 1;
}

/* Content Container */
.d365-finn-two-boxs-sct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Header Section */
.d365-finn-two-boxs-sct-header {
    text-align: left;
    margin-bottom: 40px;
    color: white;
}

.d365-finn-two-boxs-sct-heading {
    font-size: 30px;
    font-weight: 500;
    color: white;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.d365-finn-two-boxs-sct-subheading {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    max-width: 800px;
    margin: 0;
}

/* Cards Grid Layout - Default Desktop: Side-by-Side */
.d365-finn-two-boxs-sct-card-grid {
    display: flex;
    flex-direction: row;
    /* Desktop: Side-by-side */
    gap: 30px;
    /* Desktop gap */
}

/* Card (Box) Styles - Default Desktop: Equal Width */
.d365-finn-two-boxs-sct-card {
    background-color: rgb(30 45 98 / 10%);
    border-radius: 1rem;
    border: 1px solid white;
    padding: 10px 2rem 2rem 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
}

.d365-finn-two-boxs-sct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Card Image/Icon */
.d365-finn-two-boxs-sct-card-img-wrapper {
    width: 6rem;
    height: 6rem;
}

.d365-finn-two-boxs-sct-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card Content */
.d365-finn-two-boxs-sct-card-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-top: 0;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.d365-finn-two-boxs-sct-card-paragraph {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Checkpoint List */
.d365-finn-two-boxs-sct-checkpoint-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.d365-finn-two-boxs-sct-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.d365-finn-two-boxs-sct-list-item:last-child {
    margin-bottom: 0;
}

.d365-finn-two-boxs-sct-check-icon {
    color: #f5f7ff;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.25;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.d365-finn-two-boxs-sct-list-content {
    flex-grow: 1;
}

.d365-finn-two-boxs-sct-list-heading {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin: 0 0 0.25rem 0;
}

.d365-finn-two-boxs-sct-list-description {
    font-size: 0.9375rem;
    color: white;
    line-height: 1.4;
    margin: 0;
}

.blck-prg-sect {
    color: black;
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 40px;
}

.d365-fifth-sct-solu-pg-full-image-finn {
    width: 100%;
    height: auto;
    max-width: 330px;
    display: block;
    margin: 0 auto;
}

.d365-fifth-sct-solu-pg-full-image-scm {
    width: 100%;
    height: auto;
    max-width: 450px;
    display: block;
    margin: 0 auto;
}

/* === RESPONSIVENESS (Max-Width Logic) === */

/* Tablet/Smaller Desktop Adjustments (Max Width 1023px) */
@media (max-width: 1023px) {
    .d365-finn-two-boxs-sct-section {
        padding: 40px 0;
        /* Tablet padding adjustment */
    }
}

/* Mobile Overrides (Max Width 767px) */
@media (max-width: 767px) {
    .d365-finn-two-boxs-sct-header {
        margin-bottom: 20px;
    }

    .blck-prg-sect {
        color: black;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .d365-finn-two-boxs-sct-section {
        padding: 30px 0;
        /* Mobile padding adjustment */
    }

    .d365-finn-two-boxs-sct-subheading {
        font-size: 16px;
    }

    .d365-finn-two-boxs-sct-card-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .d365-finn-two-boxs-sct-card {
        padding: 10px 20px 20px 20px;
    }

    .d365-finn-two-boxs-sct-heading {
        font-size: 20px;
        /* Mobile heading size adjustment */
    }

    .d365-finn-two-boxs-sct-card-paragraph {
        font-size: 15px;
    }

    .d365-finn-two-boxs-sct-card-grid {
        flex-direction: column;
        /* Mobile: Stacked */
        gap: 2rem;
        /* Mobile gap */
    }

    .d365-finn-two-boxs-sct-card {
        flex: unset;
        /* Remove flex 1 on mobile */
    }

    .d365-finn-two-boxs-sct-check-icon {
        margin-right: 5px;
    }

    .d365-fifth-sct-solu-pg-full-image-finn {
        max-width: 90%;
    }

    .d365-fifth-sct-solu-pg-full-image-scm {
        max-width: 90%;
    }
}

/* Fourth section finance End */
/* Solutions main section for others */
.d365-frst-sctn-solu-main-title-cmmn {
    font-size: 32px;
    font-weight: 500;
    margin-top: 25px;
    line-height: 1.2;
    margin-bottom: 5px;
    color: black;
}

.d365-frst-sctn-solu-main-title-cmmn-wht {
    font-size: 32px;
    font-weight: 500;
    margin-top: 25px;
    line-height: 1.2;
    margin-bottom: 5px;
    color: white;
}

.mrgn-btm-cst {
    margin-bottom: 20px;
}

.d365-frst-sctn-solu-heading-sub-cmmn {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.6;
    color: black;
}

@media(max-width:767px) {
    .d365-frst-sctn-solu-main-title-cmmn {
        font-size: 20px;
        margin-top: 5px;
    }

    .d365-frst-sctn-solu-main-title-cmmn-wht {
        font-size: 22px;
        margin-top: 5px;
    }

    .d365-frst-sctn-solu-heading-sub-cmmn {
        font-size: 16px;
    }
}



/* Solutions main section for others End */
/* HR solution */
.h-mrgn-btm-zro {
    font-size: 30px;
    font-weight: 500;
    color: black;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 5px;
}

.d365-cst-list-title-400 {
    display: block;
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}



@media (max-width: 992px) {
    .h-mrgn-btm-zro {
        text-align: center;
    }

    .d365-cst-list-title-400 {
        font-size: 16px;
    }
}

@media (max-width: 650px) {
    .h-mrgn-btm-zro {
        font-size: 20px;
        text-align: center;
    }
}

/* HR solution End */


.d365-hr-sol-pg-cst-sct-main {
    background-image: url('https://via.placeholder.com/1500x500/8B9EC5/FFFFFF?text=Dummy+Background+Image');
    /* Replace with your background image */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.d365-hr-sol-pg-cst-sct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.d365-hr-sol-pg-cst-sct-header-content {
    margin-bottom: 40px;
}

.d365-hr-sol-pg-cst-sct-heading {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fff;
    /* Ensure heading color is white against the background */
}

.d365-hr-sol-pg-cst-sct-paragraph {
    font-size: 1.1em;
    line-height: 1.6;
    color: #f0f0f0;
    /* Slightly lighter white for paragraph */
}

.d365-hr-sol-pg-cst-sct-boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Default for mobile */
    gap: 15px;
    align-items: stretch;
    /* Ensures boxes have equal height */
}

.d365-hr-sol-pg-cst-sct-box {
    background-color: rgb(30 45 98 / 10%);
    border-radius: 10px;
    padding: 25px 20px;
    backdrop-filter: blur(5px);
    text-align: left;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.d365-hr-sol-pg-cst-sct-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    /* Light gray circle background */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.d365-hr-sol-pg-cst-sct-icon {
    width: 55px;
    /* Adjust icon size as needed */
    height: 55px;
    /* Adjust icon size as needed */
    object-fit: contain;
}

.d365-hr-sol-pg-cst-sct-box-text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: white;
}

/* Responsive adjustments */

/* For screens larger than 576px (e.g., small tablets) */
@media (min-width: 576px) {
    .d365-hr-sol-pg-cst-sct-boxes-wrapper {
        grid-template-columns: repeat(2, 1fr);
        /* 2 boxes */
    }
}

/* For screens larger than 768px (e.g., tablets) */
@media (min-width: 768px) {
    .d365-hr-sol-pg-cst-sct-boxes-wrapper {
        grid-template-columns: repeat(3, 1fr);
        /* 3 boxes */
    }
}

/* For screens larger than 992px (e.g., desktops) */
@media (min-width: 992px) {
    .d365-hr-sol-pg-cst-sct-boxes-wrapper {
        grid-template-columns: repeat(4, 1fr);
        /* 4 boxes */
    }
}

/* For screens larger than 1200px (e.g., large desktops) */
@media (min-width: 1200px) {
    .d365-hr-sol-pg-cst-sct-boxes-wrapper {
        grid-template-columns: repeat(5, 1fr);
        /* 5 boxes */
    }
}

/* FAQs  */
/* --- Global Styles for the Section --- */
.d365-faqs-cst-sctn-main-container {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.d365-faqs-cst-sctn-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Main Heading Styling --- */
.d365-faqs-cst-sctn-main-heading {
    text-align: left;
    color: black;
    font-size: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #494c9d;
    padding-left: 15px;
    font-weight: 500;
    margin-top: 0;
    line-height: 1.2;
}

/* --- Accordion Container --- */
.d365-faqs-cst-sctn-accordion-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Individual FAQ Item --- */
.d365-faqs-cst-sctn-accordion-item {
    border-bottom: 1px solid #eee;
}

.d365-faqs-cst-sctn-accordion-item:last-child {
    border-bottom: none;
}

/* --- Accordion Header (The Tab) --- */
.d365-faqs-cst-sctn-accordion-header {
    width: 100%;
    padding: 24px 20px;
    background-color: #ffffff;
    color: #555;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    line-height: 1.2;
    text-align: left;
    /* Left align tab text */
    display: flex;
    justify-content: space-between;
    /* Space out text and icon */
    align-items: center;
    transition: background-color 0.3s ease;
}

.d365-faqs-cst-sctn-accordion-header:hover {
    background-color: #f0f0f0;
}

.d365-faqs-cst-sctn-accordion-header.active {
    background-color: #e3eaff;
    color: #494c9d;
}

/* --- Tab Text Styling --- */
.d365-faqs-cst-sctn-tab-text {
    flex-grow: 1;
    /* Allows text to take up space */
    text-align: left;
}

/* --- Icon Styling and Rotation --- */
.d365-faqs-cst-sctn-icon {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    /* Icon is on the right side */
}

.d365-faqs-cst-sctn-accordion-header.active .d365-faqs-cst-sctn-icon {
    transform: rotate(180deg);
    /* Rotate icon when open */
}


/* --- Accordion Content (The Answer) --- */
.d365-faqs-cst-sctn-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff;
    padding: 0 20px;
    /* Initial padding is zero */
}

.d365-faqs-cst-sctn-accordion-content.open {
    max-height: fit-content;
    border-top: 1px dashed #eee;
}

.d365-faqs-cst-sctn-accordion-content p {
    margin: 0;
    color: black;
    line-height: 1.6;
    font-size: 16px;
    padding: 15px 50px 20px 0px;
}


/* -------------------------------------------
   RESPONSIVENESS (Media Queries)
   ------------------------------------------- */

/* Tablet Screen (e.g., up to 768px) */
@media (max-width: 768px) {
    .d365-faqs-cst-sctn-accordion-content p {
        line-height: 1.4;
        font-size: 14px;
        padding: 15px 10px 10px 0px;
    }

    .d365-faqs-cst-sctn-main-container {
        padding: 30px 15px;
    }

    .d365-faqs-cst-sctn-main-heading {
        font-size: 22px;
        margin-bottom: 20px;
        padding-left: 10px;
    }

    .d365-faqs-cst-sctn-accordion-header {
        padding: 15px;
        font-size: 15px;
    }

    .d365-faqs-cst-sctn-accordion-content.open {
        padding: 10px 15px 15px;
    }
}

/* Mobile Screen (e.g., up to 480px) */
@media (max-width: 600px) {
    .d365-faqs-cst-sctn-main-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .d365-faqs-cst-sctn-accordion-header {
        padding: 12px;
        font-size: 14px;
    }

    .d365-faqs-cst-sctn-accordion-content.open {
        padding: 8px 12px 12px;
    }
}

/* FAQs End */
/* Sales capabilities */
/* Main Container */
.d365-capab-cst-sect-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Responsive grid */
    gap: 20px;
    max-width: 1200px;
    /* Optional: adjust max width */
    margin: 0 auto;
    /* Center the container */
}

/* Individual Box Styles */
.d365-capab-cst-sect-box {
    background-color: rgb(30 45 98 / 10%);
    border-radius: 10px;
    padding: 25px 20px;
    backdrop-filter: blur(5px);
    text-align: left;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Smooth hover effect */
}

.d365-capab-cst-sect-box:hover {
    transform: translateY(-5px);
    /* Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.d365-capab-cst-sect-icon-wrapper {
    margin-bottom: 15px;
    width: 60px;
    /* Adjust icon size */
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20%;
    /* Optional: for circular icons */
    background-color: white;
    /* Light background for icon */
}

.d365-capab-cst-sect-icon {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    /* Ensures icon fits without distortion */
}

.mrgn-pdng-cst {
    margin-bottom: 8px !important;
    padding: 3px;
}

/* Heading Styling */
.d365-capab-cst-sect-heading {
    font-size: 20px;
    font-weight: 500;
    color: white;
    line-height: 1.3;
    margin-top: 8px;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.d365-capab-cst-sect-paragraph {
    font-size: 15px;
    line-height: 1.6;
    color: white;
    margin-bottom: 0;
}

/* Responsive Styles for Tablet and Mobile */
@media (max-width: 768px) {
    .d365-capab-cst-sect-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* Adjust for smaller screens */
        gap: 20px;
        padding: 15px;
    }

    .d365-capab-cst-sect-box {
        padding: 20px 15px;
    }

    .d365-capab-cst-sect-heading {
        font-size: 18px;
    }

    .d365-capab-cst-sect-paragraph {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .d365-capab-cst-sect-container {
        grid-template-columns: 1fr;
        /* Single column on very small screens */
        gap: 15px;
        padding: 10px;
    }

    .d365-capab-cst-sect-box {
        padding: 18px 12px;
    }

    .d365-capab-cst-sect-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .d365-capab-cst-sect-heading {
        font-size: 17px;
    }

    .d365-capab-cst-sect-paragraph {
        font-size: 13px;
    }
}

/* Sales capabilities End */

















































































































































/* Responsive Button Adjustments */
@media (max-width: 766px) {
    .d365-cst-button {
        display: block;
        width: fit-content;
        margin: auto;
        font-size: 13px;
        padding: 8px 15px;
    }
}

/* --- Responsive Typography Overrides (Mobile/Tablet) --- */
@media (max-width: 768px) {

    h1 {
        font-size: 30px;

        margin-bottom: 15px;
    }

    h2 {
        font-size: 24px;

        margin-top: 25px;
        margin-bottom: 10px;
    }

    p {
        font-size: 15px;

        margin-bottom: 10px;
    }

    .d365-header-cst-hero-section {
        margin-top: 70px;
    }
}

.cst-sln-d365-solutions-grid-impl {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Tablet screens (max-width 1024px) par 2 columns */
@media (max-width: 1024px) {
    .cst-sln-d365-solutions-grid-impl {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile screens (max-width 600px) par 1 column */
@media (max-width: 600px) {
    .cst-sln-d365-solutions-grid-impl {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent banner */

/* Variables for Easy Management */
:root {
    --d365-main-color: #494c9d;
    --d365-bg-color: #ffffff;
    --d365-text-color: black;
}

.d365-cookie-consnt-overlay-show {
    display: block !important;
    opacity: 1 !important;
}

/* ------------------- Banner Wrapper Styling ------------------- */
#d365-cookie-consnt-wrapper {
    position: fixed;

    bottom: 20px;
    left: 20px;
    z-index: 9999;



    transform: translateX(-150%);

    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease-in-out;
}

/* Class to show the banner with animation */
.d365-cookie-consnt-show {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

/* Class to hide the banner with animation */
.d365-cookie-consnt-hide {
    transform: translateX(-150%) !important;
    opacity: 0 !important;
}


/* ------------------- Banner Box Styling (Box Shadow & Border Added) ------------------- */
#d365-cookie-consnt-box {
    background-color: rgba(238, 238, 248, 1);
    color: var(--d365-text-color);
    padding: 20px;
    border-radius: 8px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

    border: 1px solid #cccccc;
    max-width: 350px;
}

#d365-cookie-consnt-text {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 16px;
}

#d365-cookie-consnt-read-more {
    color: var(--d365-main-color);
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
    display: inline;
}

#d365-cookie-consnt-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ------------------- Button Styling ------------------- */
#d365-cookie-consnt-accept,
#d365-cookie-consnt-decline {
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

/* Accept Button Styling */
#d365-cookie-consnt-accept {

    background-color: var(--d365-main-color);
    color: #ffffff;
    border: 1px solid var(--d365-main-color);
}

#d365-cookie-consnt-accept:hover {
    background-color: #3b3e81;
}

/* Decline Button Styling */
#d365-cookie-consnt-decline {

    background-color: #ffffff;
    color: var(--d365-main-color);
    border: 1px solid var(--d365-main-color);
}

#d365-cookie-consnt-decline:hover {
    background-color: #f0f0f0;
}

/* ------------------- Responsive Adjustments ------------------- */

@media (max-width: 768px) {
    #d365-cookie-consnt-wrapper {
        bottom: 2px;
        left: 10px;
        right: 10px;
    }

    #d365-cookie-consnt-box {
        max-width: 100%;
        padding: 15px;
    }

    #d365-cookie-consnt-text {
        margin-bottom: 15px;
        font-size: 12px;
        text-align: center;
    }

    #d365-cookie-consnt-buttons {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    #d365-cookie-consnt-accept,
    #d365-cookie-consnt-decline {
        width: auto;
        text-align: center;
        padding: 7px 20px;
        font-size: 12px;
    }
}

/* Cookie Consent banner End */
/* Terms and conditions */
/* ---------------------------------------------------- */
/* Hero Header Section */
/* ---------------------------------------------------- */

.d365-trms-cond-hero-section {

    background-image: url('../images/terms/terms-conditions.webp');
    background-size: cover;

    padding: 215px 0 150px 0;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;

}

.d365-trms-cond-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(58, 67, 126, 0.4);
    z-index: -1;
}

.d365-trms-cond-hero-heading {
    color: white;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 0;
}

/* ---------------------------------------------------- */
/* Content Section */
/* ---------------------------------------------------- */

.d365-trms-cond-content-section {
    padding: 40px 0;
    background-color: white;
}

.d365-trms-cond-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.d365-trms-cond-paragraph-group {
    display: flex;
    align-items: flex-start;

    margin-bottom: 20px;
}

.d365-trms-cond-checkbox-icon {
    color: #494c9d;

    font-size: 22px;
    margin-right: 15px;
    flex-shrink: 0;

    padding-top: 3px;

}

.d365-trms-cond-paragraph-text {
    font-size: 15px;
    margin: 0;

}

/* ---------------------------------------------------- */
/* Responsive Design */
/* ---------------------------------------------------- */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .d365-trms-cond-hero-section {
        padding: 180px 0 120px 0;

    }

    .d365-trms-cond-hero-heading {
        font-size: 24px;
    }

    .d365-trms-cond-content-section {
        padding: 40px 0 20px 0;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .d365-trms-cond-hero-section {
        padding: 170px 0 80px 0;

    }

    .d365-trms-cond-hero-heading {
        font-size: 24px;
    }

    .d365-trms-cond-checkbox-icon {
        font-size: 18px;
        margin-right: 10px;
    }

    .d365-trms-cond-paragraph-text {
        font-size: 14px;
    }
}

/* Terms and conditions End */
/* Cookie */
/* ---------------------------------------------------- */
/* Hero Header Section */
/* ---------------------------------------------------- */

.d365-cookie-cst-hero-section {

    background-image: url('../images/cookie/cookie-policy.webp');
    background-size: cover;

    padding: 215px 0 150px 0;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.d365-cookie-cst-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(58, 67, 126, 0.2);
    z-index: -1;
}

.d365-cookie-cst-hero-heading {
    color: white;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    padding: 0 20px;
}

/* ---------------------------------------------------- */
/* Content Section */
/* ---------------------------------------------------- */

.d365-cookie-cst-content-section {
    padding: 40px 0;
    background-color: white;
}

.d365-cookie-cst-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.d365-cookie-cst-paragraph {
    font-size: 16px;
    margin-bottom: 20px;

}

/* ---------------------------------------------------- */
/* Responsive Design */
/* ---------------------------------------------------- */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .d365-cookie-cst-hero-section {
        padding: 180px 0 120px 0;

    }

    .d365-cookie-cst-hero-heading {
        font-size: 36px;
        margin-bottom: 0;
    }

    .d365-cookie-cst-content-section {
        padding: 30px 0;
    }

    .d365-cookie-cst-paragraph {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 600px) {
    .d365-cookie-cst-hero-section {
        padding: 160px 0 80px 0;

    }

    .d365-cookie-cst-hero-heading {
        font-size: 24px;
        margin-bottom: 0;
    }

    .d365-cookie-cst-paragraph {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* Cookie End */