#main.footer_main_section .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0 35px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    grid-template-areas:
        "logo contact services products company belief"
        "copyright copyright copyright copyright copyright copyright";
}

#main.footer_main_section .footer-logo {
    grid-area: logo;
}


#main.footer_main_section .footer-logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #ffffff;
    letter-spacing: 2px;
}

#main.footer_main_section .footer-logo p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
    font-style: italic;
}

#main.footer_main_section .footer-contact {
    grid-area: contact;
}

#main.footer_main_section .footer-contact a span:hover {
    color: #cbcbda;
}

#main.footer_main_section .footer-contact p {
    margin: 35px 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
    display: flex;
    align-items: flex-start;
}

#main.footer_main_section .footer-contact p span {
    font-size: 16px;
}

#main.footer_main_section .footer-contact p:first-child {
    font-weight: 600;
    color: #ffffff;
}

#main.footer_main_section .footer-contact a {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}

#main.footer_main_section .footer-contact a span {
    font-size: 16px;
}

#main.footer_main_section .footer-column {
    display: flex;
    flex-direction: column;
}

/*#main.footer_main_section .footer-column:nth-of-type(3) {*/
/*    grid-area: services;*/
/*}*/

/*#main.footer_main_section .footer-column:nth-of-type(4) {*/
/*    grid-area: products;*/
/*}*/

/*#main.footer_main_section .footer-column:nth-of-type(5) {*/
/*    grid-area: company;*/
/*}*/

/*#main.footer_main_section .footer-belief {*/
/*    grid-area: belief;*/
/*}*/

#main.footer_main_section .footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#main.footer_main_section .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#main.footer_main_section .footer-column li {
    margin-bottom: 12px;
}

#main.footer_main_section .footer-column a {
    color: #f3f7f8;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;

}

#main.footer_main_section .footer-column a:hover {
    color: #cbcbda;
    text-decoration: none;
}

#main.footer_main_section .footer-belief p {
    font-size: 16px;
    line-height: 21px;
    color: #f3f7f8;
    margin: 0;
}

#main.footer_main_section .footer-copyright {
    grid-area: copyright;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #333333;
    /*margin-top: 40px;*/
    background: #000000;
}

#main.footer_main_section .footer-copyright p {
    margin: 0;
    font-size: 16px;
    color: #A0A1A0;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

#main.footer_main_section .footer_logo_img {
    width: 90%;
}

#main.footer_main_section {
    background-color: #3a4a59;
}

#main.footer_main_section .footer-column li {
    margin-bottom: 0;
    padding-bottom: 0;
}

#main.footer_main_section .cmss_custom_footer {
    padding: 60px 0;
}

#main.footer_main_section .footer-contact i {
    font-size: 18px;
    margin-right: 10px;
    color: #fff;
    margin-top: 3px;
}

/* Responsive Design */
@media (max-width:1210px) {
    #main.footer_main_section .footer-container {
        max-width: 1015px;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    #main.footer_main_section .cmss_custom_footer {
        padding: 25px 0;
    }
}

@media (max-width: 1024px) {
    #main.footer_main_section .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        grid-template-areas:
            "logo contact belief"
            "services products company"
            "copyright copyright copyright";
    }

    #main.footer_main_section .footer-container {
        max-width: 800px;
    }
}

@media (max-width:820px) {
    #main.footer_main_section .footer-container {
        max-width: 728px;
    }
}

@media (max-width: 768px) {
    #main.footer_main_section .footer-container {
        max-width: 712px;
    }

    #main.footer_main_section .footer_logo_img {
        width: 55%;
    }

    #main.footer_main_section .footer-container {
        max-width: 539px;
    }

    #main.footer_main_section .cmss-custom-footer {
        padding: 40px 0 0;
    }

    #main.footer_main_section .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        grid-template-areas:
            "logo contact"
            "services products"
            "company belief"
            "copyright copyright";
    }

    #main.footer_main_section .footer-logo h1 {
        font-size: 2rem;
    }
}

@media (max-width:575px) {
    #main.footer_main_section .footer-container {
        max-width: 458px;
    }
}

@media (max-width: 480px) {
    #main.footer_main_section .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        grid-template-areas:
            "logo"
            "contact"
            "services"
            "products"
            "company"
            "belief"
            "copyright";
    }

    #main.footer_main_section .footer-container {
        max-width: 320px;
    }

    #main.footer_main_section .footer-copyright {
        margin-top: 20px;
        padding: 20px 0;
    }
}

/*Fotter End */

/*Home Page Start*/

@media (max-width:768px) {
    .brands-carousel .slick-dots li {
        /*height: 18px;*/
        width: 18px;
    }
}

@media (max-width:575px) {
    .brands-carousel .slick-dots li {
        height: 9px;
        width: 9px;
    }

    .brands-carousel .slick-dots li i {
        font-size: 13px;
    }
}

/*About us */
.post-8990 .what_set_main_section .vc_custom_1750930760050 {
    padding: 50px 0px 50px 40px !important;
}

.post-8990 .what_set_main_section .vc_custom_1750930760050 .wpb_content_element .wpb_wrapper h4 {
    font-weight: 600;
}

.post-8990 .what_set_main_section .vc_custom_1750930760050 .wpb_content_element .wpb_wrapper p {
    line-height: 20px !important;
    margin: 15px 0 0 !important;
}

.post-8990 .vc_custom_1750930338179 .wpb_wrapper h1 strong {
    font-size: 38px;
    color: #374d70;

}

.post-8990 .vc_custom_1750930338179 .wpb_wrapper h1 {
    margin-bottom: 0;
}

.post-8990 .vc_custom_1750930338179 .wpb_wrapper h1 span {
    font-size: 44px;
}

.post-8990 .vc_column_container .wpb_content_element h4 {
    font-size: 24px !important;
    color: #2a3a4b;
}

.post-8990 .vc_column_container .wpb_content_element p {
    font-size: 18px !important;
    line-height: 30px !important;
    margin: 25px 0 0 !important;
}

.post-8990 .career_main_section {
    padding: 50px 0;
    display: flex;
    align-items: center;


}

.post-8990 .vc_custom_1751015687493 .upb_row_bg {
    background: linear-gradient(to right, #CBDDFF, #D7DFEC, #D5DDEA) !important;
}

.post-8990 .vc_column_container .dt-sc-button.medium {
    font-size: 18px;
    padding: 10px 19px 10px;
    border-radius: 15px;
}

.post-8990 .vc_section {
    padding: 50px 0 10px;
}

.post-8990 .vc_section .wpb_content_element h1 {
    color: #2a5aa6;
}

.post-8990 .vc_section .vc_row-fluid .slick-dots i {
    color: #5c6265 !important;
}

.post-8990 .vc_section .vc_row-fluid .slick-dots .slick-active i {
    color: #1E73BE !important;
}

.post-8990 .abbout_us_client_button_sec {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.post-8990 .vc_custom_1750930760050 img {
    width: 45px !important;
}

.page-id-8990 #main .container:has(h1.simple-title) {
    display: none;
}

.page-id-8990 .commententries {
    margin: 0px;
}

.page-id-8990 .wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0;
}

.page-id-8990 #post-8990 .vc_custom_1750942199631 .upb_row_bg {
    background: linear-gradient(to right, #CBDDFF, #D7DFEC, #D5DDEA) !important;
}

.page-id-8990 .banner_left_col_manasa .vc_column-inner {
    width: 650px;
}

.post-8990 .vc_column_container .dt-sc-button.medium {
    font-size: 16px;
    font-family: 'Roboto';
}

.page-id-8990 .about_women_img img {
    width: 229px;
    height: 350px;
    position: relative;
    z-index: 1234;
}

.about_women_img .vc_single_image-wrapper::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 160px;
    background: linear-gradient(135deg, #c8d0e0 0%, #b8c5d8 100%);
    top: 39px;
    left: 160px;
    opacity: 0.8;
    z-index: 1;
}

.about_women_img .vc_single_image-wrapper::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 120px;
    background: linear-gradient(135deg, #b8c5d8 0%, #a8b5c8 100%);
    bottom: 22px;
    right: 150px;
    opacity: 0.8;
    z-index: 1;
}

@media (max-width:1280px) {
    .about_women_img .vc_single_image-wrapper::after {
        right: 105px;
    }

    .about_women_img .vc_single_image-wrapper::before {
        left: 115px;
    }
}

@media (max-width:1199px) {
    .about_women_img .vc_single_image-wrapper::after {
        right: 60px;
    }

    .about_women_img .vc_single_image-wrapper::before {
        left: 60px;
    }
}

@media (max-width:991px) {
    .about_women_img .vc_single_image-wrapper::after {
        right: 10px;
    }

    .about_women_img .vc_single_image-wrapper::before {
        left: 15px;
    }
}

@media (max-width:768px) {
    .post-8990 .career_main_section {
        flex-direction: column;
    }

    .about_women_img .vc_single_image-wrapper::after {
        right: 40px;
    }

    .about_women_img .vc_single_image-wrapper::before {
        left: 40px;
    }

    .page-id-8990 .banner_left_col_manasa .vc_column-inner {
        width: 100%;
    }

    .vc_custom_1750942199631 .wpb_single_image.vc_align_left {
        display: flex;
        justify-content: center;
    }

    .post-8990 .vc_custom_1750933925528 .vc_custom_1750930338179 {
        padding-top: 35px !important;
    }
}

@media (max-width:575px) {
    .post-8990 .vc_custom_1750933925528 .vc_custom_1750930760050 {
        padding: 30px 0px 30px 10px !important;
    }
}

@media (max-width:479px) {
    .about_women_img .vc_single_image-wrapper::before {
        left: 0px;
    }

    .about_women_img .vc_single_image-wrapper::after {
        right: -10px;
    }
}



/*Service*/
.fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col img {
    width: 145px;
}

.fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col h2 {
    font-size: 32px;
    font-weight: 600;
    color: #3A4A59;
}

.fusion_expertise_main_col .right_backet {
    margin-top: -8px;
}

.page-id-9010 #main .container:has(h1.simple-title) {
    display: none;
}

.page-id-9010 #post-9010 .vc_custom_1750929252568 .upb_row_bg {
    background: linear-gradient(to right, #CBDDFF, #D7DFEC, #D5DDEA) !important;
}

.page-id-9010 #post-9010 .vc_custom_1750929252568 {
    padding-top: 85px !important;
    padding-bottom: 50px !important;
    background-color: #FFFFFF !important;
}

.page-id-9010 .oracle_fusion_left_col .vc_column-inner {
    width: 780px;
}

.page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:before {
    content: '';
    position: absolute;
    width: 96px;
    height: 103px;
    background: linear-gradient(135deg, #c8d0e0 0%, #b8c5d8 100%);
    top: 20px;
    left: -35px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:after {
    content: '';
    position: absolute;
    width: 154px;
    height: 65px;
    background: linear-gradient(135deg, #b8c5d8 0%, #a8b5c8 100%);
    bottom: -11px;
    right: 66px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9010 .oracle_fusion_main_img .vc_box_border_grey img {
    position: relative;
    z-index: 1234;
}

.page-id-9010 .ult-carousel-wrapper .slick-dots li i {
    color: #898484 !important;
}

.page-id-9010 .ult-carousel-wrapper .slick-dots li.slick-active i {
    color: #1E73BE !important;
}

.page-id-9010 .service_page_contact_form .dt-sc-one-half {
    display: inline;
    width: 49%;
    margin-bottom: 0;
}

.page-id-9010 .service_page_contact_form .dt-sc-one-half p {
    margin-bottom: 0;
}

.page-id-9010 .wpcf7-form-control {
    background-color: #e7e9eb !important;
    border: 2px solid #e7e9eb !important;
    border-radius: 10px !important;
    font-family: 'Roboto';
}

.page-id-9010 .wpcf7-form .fa {
    position: relative !important;
    top: 91% !important;
    transform: translateY(244%) !important;
}

.page-id-9010 .wpcf7-form .fa-file-text {
    transform: translateY(280%) !important;
}

.page-id-9010 .wpcf7-form-control:focus-visible {
    outline: none !important;
}

.page-id-9010 .wpcf7-submit {
    padding: 14px 60px !important;
    width: fit-content !important;
    background: #3A4A59 !important;
    float: right !important;
}

.page-id-9010 .wpcf7-submit:hover {
    background: #505d68 !important;
}

.page-id-9010 .contact_left_col .wpb_wrapper p a {
    text-decoration: underline !important;
}

.page-id-9010 .contact_left_col .wpb_wrapper p a:hover {
    color: #000 !important;
}

.page-id-8990 .vc_custom_1750942199631 {
    display: flex;
    align-items: center;
}

.page-id-8990 .vc_align_left .vc_box_border_grey .vc_single_image-img {
    height: 275px;
    object-fit: contain;
}


.what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
    position: relative;
    left: 9%;
}

.what_set_main_section .vc_custom_1750930760050 {
    background-color: #DFDBDB26 !important;
}
@media (max-width:2050px) {
    .what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
        position: relative;
        left: 19.6%;
    }
}

@media (max-width:1920px) {
    .what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
        position: relative;
        left: 17.5%;
    }
}

@media (max-width:1710px) {
    .what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
        position: relative;
        left: 13.2%;
    }
}

@media (max-width:1550px) {
    .what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
        position: relative;
        left: 9%;
    }
}


@media (max-width:1400px) {
    .what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
        position: relative;
        left: 4.5%;
    }
}

@media (max-width:1280px) {

    .page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 20px;
    }

    .page-id-9010 .oracle_fusion_left_col .vc_column-inner {
        width: 570px;
    }

    .fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col h2 {
        font-size: 26px;
    }

    .what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
        position: relative;
        left: 5%;
    }
}

@media (max-width:1199px) {
    .page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -35px;
    }
}

@media (max-width:1024px) {
    .what_set_main_section .vc_custom_1750930789049 .vc_custom_1750930338179 .wpb_wrapper {
        position: relative;
        left: 4%;
    }
}


@media (max-width:991px) {
    .page-id-9010 .oracle_fusion_left_col .vc_column-inner {
        width: 505px;
    }

    .page-id-9010 .oracle_fusion_left_col h1 {
        font-size: 26px !important;
    }

    .page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 150px;
    }

    #post-68 .spacer-6863b86e65aa4 {
        height: 50px;
    }
}

@media (max-width:767px) {
    .page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 15px;
        top: 175px;
    }

    .page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: 25px;
    }

    .wpb_single_image.vc_align_left {
        text-align: center;
    }

    .page-id-8990 .vc_custom_1750942199631 {
        flex-direction: column;
    }

    #post-68 .spacer-6863b86e65aa4 {
        height: 0px;
    }
}

@media (max-width:575px) {
    .page-id-9010 .wpcf7-submit {
        float: none !important;
    }

    #post-68 .spacer-6863b86e65aa4 {
        height: 50px;
    }

    .product_title_main {
        padding-top: 9% !important;
    }
}

@media (max-width:479px) {
    .page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: -10px;
    }

    .page-id-9010 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 175px;
    }

    .fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col h2 {
        font-size: 23px;
    }

    .page-id-9010 .oracle_fusion_left_col .vc_column-inner {
        width: 100%;
    }

    .page-id-9010 .key_different_main_section .key_main_row {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    }

    .page-id-9010 .key_different_main_section .key_main_heading {
        font-size: 24px !important;
    }
}















/* Contact Form 7 - Corrected CSS for Your Specific Structure */

/* Main Form Container */
.page-id-7704 .contact_page_form_main .wpcf7-form.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset margins and padding for form elements */
.page-id-7704 .contact_page_form_main .wpcf7-form p {
    margin: 0 0 20px 0;
    position: relative;
}

/* Column Layout Fix */
.page-id-7704 .contact_page_form_main .column.dt-sc-one-half {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.page-id-7704 .contact_page_form_main .column.dt-sc-one-half.first {
    margin-right: 0;
}

.page-id-7704 .contact_page_form_main .column.dt-sc-one-column {
    width: 100%;
    clear: both;
    margin-bottom: 20px;
}

/* Clear floats after columns */
.page-id-7704 .contact_page_form_main .wpcf7-form::after {
    content: "";
    display: table;
    clear: both;
}

/* Icon Styling */
.page-id-7704 .contact_page_form_main .wpcf7-form .fa {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    z-index: 10;
    pointer-events: none;
}

/* For textarea, adjust icon position */
.page-id-7704 .contact_page_form_main .column.dt-sc-one-column .fa {
    top: 20px;
    transform: none;
}

/* Input Field Styling */
.page-id-7704 .contact_page_form_main .wpcf7-form-control {
    width: 100% !important;
    padding: 12px 15px 12px 45px !important;
    border: 2px solid #e1e5e9 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #2c3e50 !important;
    background-color: #ffffff !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    outline: none !important;
    font-family: inherit !important;
}

/* Text inputs specific height */
.page-id-7704 .contact_page_form_main .wpcf7-text,
.page-id-7704 .contact_page_form_main .wpcf7-email {
    height: 50px !important;
    line-height: normal !important;
}

/* Textarea specific styling */
.page-id-7704 .contact_page_form_main .wpcf7-textarea {
    min-height: 120px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
    padding-top: 15px !important;
}

/* Focus states */
.page-id-7704 .contact_page_form_main .wpcf7-form-control:focus {
    border-color: #3498db !important;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1) !important;
    background-color: #ffffff !important;
}

/* Icon color change on focus */
.page-id-7704 .contact_page_form_main .wpcf7-form-control:focus~.fa,
.page-id-7704 .contact_page_form_main .wpcf7-form-control:focus+.fa {
    color: #3498db !important;
}

/* Placeholder styling */
.page-id-7704 .contact_page_form_main .wpcf7-form-control::placeholder {
    color: #7f8c8d !important;
    opacity: 1 !important;
    font-weight: 400 !important;
}

/* Hover effects */
.page-id-7704 .contact_page_form_main .wpcf7-form-control:hover {
    border-color: #bdc3c7 !important;
}

/* Submit Button Styling */
.page-id-7704 .contact_page_form_main .wpcf7-submit {
    width: 100% !important;
    background: #033E8E !important;
    color: #ffffff !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 10px !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-id-7704 .contact_page_form_main .wpcf7-submit:hover {

    background: #0557c5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3) !important;
}

.page-id-7704 .contact_page_form_main .wpcf7-submit:active {
    transform: translateY(0) !important;
}

/* Submit button container */
.page-id-7704 .contact_page_form_main .form-submit {
    text-align: center !important;
    margin-top: 25px !important;
    clear: both !important;
}

/* Loading spinner */
.page-id-7704 .contact_page_form_main .wpcf7-spinner {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 2px solid #ffffff !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    display: none !important;
}

.page-id-7704 .contact_page_form_main .wpcf7-form.submitting .wpcf7-spinner {
    display: block !important;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Response Messages */
/* .wpcf7-response-output {
    margin-top: 20px !important;
    padding: 15px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    text-align: center !important;
    display: none !important;
}

.wpcf7-response-output.wpcf7-display-none {
    display: none !important;
}

.wpcf7-response-output:not(.wpcf7-display-none) {
    display: block !important;
} */

.page-id-7704 .contact_page_form_main .wpcf7-mail-sent-ok {
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
}

.page-id-7704 .contact_page_form_main .wpcf7-mail-sent-ng,
.page-id-7704 .contact_page_form_main .wpcf7-validation-errors {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
}

/* Validation errors */
.page-id-7704 .contact_page_form_main .wpcf7-not-valid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.page-id-7704 .contact_page_form_main .wpcf7-not-valid-tip {
    color: #e74c3c !important;
    font-size: 14px !important;
    margin-top: 5px !important;
    display: block !important;
    padding-left: 45px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-id-7704 .contact_page_form_main .wpcf7-form.contact-form {
        padding: 20px 15px !important;
        margin: 10px !important;
    }

    .page-id-7704 .contact_page_form_main .column.dt-sc-one-half {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
        margin-bottom: 15px !important;
    }

    .page-id-7704 .contact_page_form_main .wpcf7-form-control {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
    }

    .page-id-7704 .contact_page_form_main .wpcf7-submit {
        padding: 18px 30px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .page-id-7704 .contact_page_form_main .wpcf7-form.contact-form {
        padding: 15px 10px !important;
        margin: 5px !important;
        border-radius: 8px !important;
    }

    .page-id-7704 .contact_page_form_main .wpcf7-form-control {
        padding: 15px 15px 15px 45px !important;
    }

    .page-id-7704 .contact_page_form_main .wpcf7-textarea {
        min-height: 100px !important;
    }
}

/* Fix for form control wrap */
.page-id-7704 .contact_page_form_main .wpcf7-form-control-wrap {
    position: relative !important;
    display: block !important;
}

/* Ensure proper box-sizing */
.page-id-7704 .contact_page_form_main .wpcf7-form * {
    box-sizing: border-box !important;
}

/* Remove default margins that might interfere */
.page-id-7704 .contact_page_form_main .wpcf7-form input,
.page-id-7704 .contact_page_form_main .wpcf7-form textarea,
.page-id-7704 .contact_page_form_main .wpcf7-form select {
    margin: 0 !important;
}

/* Fix for any conflicting styles */
.page-id-7704 .contact_page_form_main .wpcf7-form .column {
    padding: 0 !important;
}

/* Accessibility improvements */
.page-id-7704 .contact_page_form_main .wpcf7-form-control:focus-visible {
    outline: 2px solid #3498db !important;
    outline-offset: 2px !important;
}

.page-id-7704 .contact_page_form_main .contact-form p span.fa {
    border-right: unset;
    left: 0;
    line-height: 12px;
    position: absolute;
    text-align: center;
    top: 26px !important;
    width: 50px;
    z-index: 9;
    color: #868686;
    font-size: 14px;
}

.wp-singular.page-template-default.page-id-7704 .wrapper #main h1.simple-title {
    display: none;
}

.page-id-7704 .contact_page_form_main .wpcf7 .contact-form .column.first {
    margin-left: 0;
}

.page-id-7704 .contact_page_form_main .contact-form .dt-sc-one-half {
    margin: 0;
}

.page-id-7704 .contact_page_form_main .contact-form .dt-sc-one-column {
    margin-top: unset;
}

.page-id-7704 .contact_page_form_main .contact-form p.form-submit {
    margin: 0 !important;
}

.page-id-7704 .contact_us_main .wpcf7#wpcf7-f7707-p7704-o1 {
    display: flex;
    justify-content: center;
}

.brand_carousel_main .column img {
    height: 200px !important;
    object-fit: contain;
}

.home_page_brand_carousel_section .ult-item-wrap img {
    height: 200px !important;
    object-fit: contain;
}

.page-id-9010 .fusion_expertise_main_section .fusion_expertise_right_col .wpb_content_element .wpb_wrapper p {
    line-height: 20px !important;
    margin: 15px 0 0 !important;
}






.home #header-wrapper {
    margin-bottom: 0 !important;
}

h2 {
    font-size: 28px;
}

.page-id-9010 #main {
    margin-top: -20px;
}

.key_different_main_section img.key_icon_img {
    width: 80px;
    height: auto;
    margin-bottom: 25px;
}

.page-id-9010 .vc_section {
    padding: 50px 0 10px;
}






.vc_column-inner.vc_custom_1751286894963 {
    height: 400px !important;
}

.vc_column-inner.vc_custom_1751286912444 {
    height: 400px !important;
}

.Service_btn {
    background-color: transparent;
    border-color: #4B5A68;
    font-size: 16px !important;
    padding: 0 !important;
    /* border-radius: 15px; */
    color: #0A4390;
    margin-top: 5px !important;
    font-family: 'Roboto' !important;
    line-height: normal;
    display: inline-block;
    /* margin: 10px 0px 0px; */
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 1;
}

.Service_btn:hover {
    background-color: unset !important;
    color: #0566e9;
}

#post-68 .brands-carousel .slick-dots i {
    color: #5c6265 !important;
}

#post-68 .brands-carousel .slick-dots .slick-active i {
    color: #1E73BE !important;
}


.home_our_service_title {
    font-size: 28px;
}

.page-id-8990 .brands-carousel .vc_column_container.wpb_column img {
    height: 200px !important;
    object-fit: contain;
}

.service_client_slider .service_brand_slider .vc_column_container.wpb_column img {
    height: 200px !important;
    object-fit: contain;
}
/* added CSS for SalesForce under Services menu - start */

.page-id-9242 #main .container:has(h1.simple-title) {
    display: none;
}

#post-9242 .vc_custom_1750929252568 .upb_row_bg {
    background: linear-gradient(to right, #CBDDFF, #D7DFEC, #D5DDEA) !important;
}

#post-9242 .vc_custom_1750929252568 {
    padding-top: 85px !important;
    padding-bottom: 50px !important;
    background-color: #FFFFFF !important;
}

.page-id-9242 .oracle_fusion_left_col .vc_column-inner {
    width: 780px;
}

.page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:before {
    content: '';
    position: absolute;
    width: 96px;
    height: 103px;
    background: linear-gradient(135deg, #c8d0e0 0%, #b8c5d8 100%);
    top: 20px;
    left: -35px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:after {
    content: '';
    position: absolute;
    width: 154px;
    height: 65px;
    background: linear-gradient(135deg, #b8c5d8 0%, #a8b5c8 100%);
    bottom: -11px;
    right: 66px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9242 .oracle_fusion_main_img .vc_box_border_grey img {
    position: relative;
    z-index: 1234;
}

.page-id-9242 .ult-carousel-wrapper .slick-dots li i {
    color: #898484 !important;
}

.page-id-9242 .ult-carousel-wrapper .slick-dots li.slick-active i {
    color: #1E73BE !important;
}

.page-id-9242 .service_page_contact_form .dt-sc-one-half {
    display: inline;
    width: 49%;
    margin-bottom: 0;
}

.page-id-9242 .service_page_contact_form .dt-sc-one-half p {
    margin-bottom: 0;
}

.page-id-9242 .wpcf7-form-control {
    background-color: #e7e9eb !important;
    border: 2px solid #e7e9eb !important;
    border-radius: 10px !important;
    font-family: 'Roboto';
}

.page-id-9242 .wpcf7-form .fa {
    position: relative !important;
    top: 91% !important;
    transform: translateY(244%) !important;
}

.page-id-9242 .wpcf7-form .fa-file-text {
    transform: translateY(280%) !important;
}

.page-id-9242 .wpcf7-form-control:focus-visible {
    outline: none !important;
}

.page-id-9242 .wpcf7-submit {
    padding: 14px 60px !important;
    width: fit-content !important;
    background: #3A4A59 !important;
    float: right !important;
}

.page-id-9242 .wpcf7-submit:hover {
    background: #505d68 !important;
}

.page-id-9242 .contact_left_col .wpb_wrapper p a {
    text-decoration: underline !important;
}

.page-id-9242 .contact_left_col .wpb_wrapper p a:hover {
    color: #000 !important;
}

@media (max-width:1280px) {

    .page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 20px;
    }

    .page-id-9242 .oracle_fusion_left_col .vc_column-inner {
        width: 570px;
    }

}

@media (max-width:1199px) {
    .page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -35px;
    }
}


@media (max-width:991px) {
    .page-id-9242 .oracle_fusion_left_col .vc_column-inner {
        width: 505px;
    }

    .page-id-9242 .oracle_fusion_left_col h1 {
        font-size: 26px !important;
    }

    .page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 150px;
    }
}


@media (max-width:767px) {
    .page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 15px;
        top: 175px;
    }

    .page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: 25px;
    }
}


@media (max-width:575px) {
    .page-id-9242 .wpcf7-submit {
        float: none !important;
    }

}

@media (max-width:479px) {
    .page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: -10px;
    }

    .page-id-9242 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 175px;
    }

    .fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col h2 {
        font-size: 23px;
    }

    .page-id-9242 .oracle_fusion_left_col .vc_column-inner {
        width: 100%;
    }

    .page-id-9242 .key_different_main_section .key_main_row {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    }

    .page-id-9242 .key_different_main_section .key_main_heading {
        font-size: 24px !important;
    }
}


.page-id-9242 .fusion_expertise_main_section .fusion_expertise_right_col .wpb_content_element .wpb_wrapper p {
    line-height: 20px !important;
    margin: 15px 0 0 !important;
}

.page-id-9242 #main {
    margin-top: -20px;
}

.page-id-9242 .vc_section {
    padding: 50px 0 10px;
}
/*Salesforce page Custom CSS end */

/*PeopleSoft page Custom CSS start */

.page-id-9247 #main .container:has(h1.simple-title) {
    display: none;
}

#post-9247 .vc_custom_1750929252568 .upb_row_bg {
    background: linear-gradient(to right, #CBDDFF, #D7DFEC, #D5DDEA) !important;
}

#post-9247 .vc_custom_1750929252568 {
    padding-top: 85px !important;
    padding-bottom: 50px !important;
    background-color: #FFFFFF !important;
}

.page-id-9247 .oracle_fusion_left_col .vc_column-inner {
    width: 780px;
}

.page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:before {
    content: '';
    position: absolute;
    width: 96px;
    height: 103px;
    background: linear-gradient(135deg, #c8d0e0 0%, #b8c5d8 100%);
    top: 20px;
    left: -35px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:after {
    content: '';
    position: absolute;
    width: 154px;
    height: 65px;
    background: linear-gradient(135deg, #b8c5d8 0%, #a8b5c8 100%);
    bottom: -11px;
    right: 66px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9247 .oracle_fusion_main_img .vc_box_border_grey img {
    position: relative;
    z-index: 1234;
}

.page-id-9247 .ult-carousel-wrapper .slick-dots li i {
    color: #898484 !important;
}

.page-id-9247 .ult-carousel-wrapper .slick-dots li.slick-active i {
    color: #1E73BE !important;
}

.page-id-9247 .service_page_contact_form .dt-sc-one-half {
    display: inline;
    width: 49%;
    margin-bottom: 0;
}

.page-id-9247 .service_page_contact_form .dt-sc-one-half p {
    margin-bottom: 0;
}

.page-id-9247 .wpcf7-form-control {
    background-color: #e7e9eb !important;
    border: 2px solid #e7e9eb !important;
    border-radius: 10px !important;
    font-family: 'Roboto';
}

.page-id-9247 .wpcf7-form .fa {
    position: relative !important;
    top: 91% !important;
    transform: translateY(244%) !important;
}

.page-id-9247 .wpcf7-form .fa-file-text {
    transform: translateY(280%) !important;
}

.page-id-9247 .wpcf7-form-control:focus-visible {
    outline: none !important;
}

.page-id-9247 .wpcf7-submit {
    padding: 14px 60px !important;
    width: fit-content !important;
    background: #3A4A59 !important;
    float: right !important;
}

.page-id-9247 .wpcf7-submit:hover {
    background: #505d68 !important;
}

.page-id-9247 .contact_left_col .wpb_wrapper p a {
    text-decoration: underline !important;
}

.page-id-9247 .contact_left_col .wpb_wrapper p a:hover {
    color: #000 !important;
}

@media (max-width:1280px) {

    .page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 20px;
    }

    .page-id-9247 .oracle_fusion_left_col .vc_column-inner {
        width: 570px;
    }

}

@media (max-width:1199px) {
    .page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -35px;
    }
}


@media (max-width:991px) {
    .page-id-9247 .oracle_fusion_left_col .vc_column-inner {
        width: 505px;
    }

    .page-id-9247 .oracle_fusion_left_col h1 {
        font-size: 26px !important;
    }

    .page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 150px;
    }
}


@media (max-width:767px) {
    .page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 15px;
        top: 175px;
    }

    .page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: 25px;
    }
}


@media (max-width:575px) {
    .page-id-9247 .wpcf7-submit {
        float: none !important;
    }

}

@media (max-width:479px) {
    .page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: -10px;
    }

    .page-id-9247 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 175px;
    }

    .fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col h2 {
        font-size: 23px;
    }

    .page-id-9247 .oracle_fusion_left_col .vc_column-inner {
        width: 100%;
    }

    .page-id-9247 .key_different_main_section .key_main_row {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    }

    .page-id-9247 .key_different_main_section .key_main_heading {
        font-size: 24px !important;
    }
}


.page-id-9247 .fusion_expertise_main_section .fusion_expertise_right_col .wpb_content_element .wpb_wrapper p {
    line-height: 20px !important;
    margin: 15px 0 0 !important;
}

.page-id-9247 #main {
    margin-top: -20px;
}

.page-id-9247 .vc_section {
    padding: 50px 0 10px;
}
/*PeopleSoft custom css end*/

/*Finacle custom css start */
.page-id-9251 #main .container:has(h1.simple-title) {
    display: none;
}

#post-9251 .vc_custom_1750929252568 .upb_row_bg {
    background: linear-gradient(to right, #CBDDFF, #D7DFEC, #D5DDEA) !important;
}

#post-9251 .vc_custom_1750929252568 {
    padding-top: 85px !important;
    padding-bottom: 50px !important;
    background-color: #FFFFFF !important;
}

.page-id-9251 .oracle_fusion_left_col .vc_column-inner {
    width: 780px;
}

.page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:before {
    content: '';
    position: absolute;
    width: 96px;
    height: 103px;
    background: linear-gradient(135deg, #c8d0e0 0%, #b8c5d8 100%);
    top: 20px;
    left: -35px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:after {
    content: '';
    position: absolute;
    width: 154px;
    height: 65px;
    background: linear-gradient(135deg, #b8c5d8 0%, #a8b5c8 100%);
    bottom: -11px;
    right: 66px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9251 .oracle_fusion_main_img .vc_box_border_grey img {
    position: relative;
    z-index: 1234;
}

.page-id-9251 .ult-carousel-wrapper .slick-dots li i {
    color: #898484 !important;
}

.page-id-9251 .ult-carousel-wrapper .slick-dots li.slick-active i {
    color: #1E73BE !important;
}

.page-id-9251 .service_page_contact_form .dt-sc-one-half {
    display: inline;
    width: 49%;
    margin-bottom: 0;
}

.page-id-9251 .service_page_contact_form .dt-sc-one-half p {
    margin-bottom: 0;
}

.page-id-9251 .wpcf7-form-control {
    background-color: #e7e9eb !important;
    border: 2px solid #e7e9eb !important;
    border-radius: 10px !important;
    font-family: 'Roboto';
}

.page-id-9251 .wpcf7-form .fa {
    position: relative !important;
    top: 91% !important;
    transform: translateY(244%) !important;
}

.page-id-9251 .wpcf7-form .fa-file-text {
    transform: translateY(280%) !important;
}

.page-id-9251 .wpcf7-form-control:focus-visible {
    outline: none !important;
}

.page-id-9251 .wpcf7-submit {
    padding: 14px 60px !important;
    width: fit-content !important;
    background: #3A4A59 !important;
    float: right !important;
}

.page-id-9251 .wpcf7-submit:hover {
    background: #505d68 !important;
}

.page-id-9251 .contact_left_col .wpb_wrapper p a {
    text-decoration: underline !important;
}

.page-id-9251 .contact_left_col .wpb_wrapper p a:hover {
    color: #000 !important;
}

@media (max-width:1280px) {

    .page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 20px;
    }

    .page-id-9251 .oracle_fusion_left_col .vc_column-inner {
        width: 570px;
    }

}

@media (max-width:1199px) {
    .page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -35px;
    }
}


@media (max-width:991px) {
    .page-id-9251 .oracle_fusion_left_col .vc_column-inner {
        width: 505px;
    }

    .page-id-9251 .oracle_fusion_left_col h1 {
        font-size: 26px !important;
    }

    .page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 150px;
    }
}


@media (max-width:767px) {
    .page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 15px;
        top: 175px;
    }

    .page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: 25px;
    }
}


@media (max-width:575px) {
    .page-id-9251 .wpcf7-submit {
        float: none !important;
    }

}

@media (max-width:479px) {
    .page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: -10px;
    }

    .page-id-9251 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 175px;
    }

    .fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col h2 {
        font-size: 23px;
    }

    .page-id-9251 .oracle_fusion_left_col .vc_column-inner {
        width: 100%;
    }

    .page-id-9251 .key_different_main_section .key_main_row {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    }

    .page-id-9251 .key_different_main_section .key_main_heading {
        font-size: 24px !important;
    }
}


.page-id-9251 .fusion_expertise_main_section .fusion_expertise_right_col .wpb_content_element .wpb_wrapper p {
    line-height: 20px !important;
    margin: 15px 0 0 !important;
}

.page-id-9251 #main {
    margin-top: -20px;
}

.page-id-9251 .vc_section {
    padding: 50px 0 10px;
}
/*Finacle css end */

/*engineering css 2 start*/
.page-id-9275 #main .container:has(h1.simple-title) {
    display: none;
}

#post-9275 .vc_custom_1750929252568 .upb_row_bg {
    background: linear-gradient(to right, #CBDDFF, #D7DFEC, #D5DDEA) !important;
}

#post-9275 .vc_custom_1750929252568 {
    padding-top: 85px !important;
    padding-bottom: 50px !important;
    background-color: #FFFFFF !important;
}

.page-id-9275 .oracle_fusion_left_col .vc_column-inner {
    width: 780px;
}

.page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:before {
    content: '';
    position: absolute;
    width: 96px;
    height: 103px;
    background: linear-gradient(135deg, #c8d0e0 0%, #b8c5d8 100%);
    top: 20px;
    left: -35px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:after {
    content: '';
    position: absolute;
    width: 154px;
    height: 65px;
    background: linear-gradient(135deg, #b8c5d8 0%, #a8b5c8 100%);
    bottom: -11px;
    right: 66px;
    opacity: 0.8;
    z-index: 1;
}

.page-id-9275 .oracle_fusion_main_img .vc_box_border_grey img {
    position: relative;
    z-index: 1234;
}

.page-id-9275 .ult-carousel-wrapper .slick-dots li i {
    color: #898484 !important;
}

.page-id-9275 .ult-carousel-wrapper .slick-dots li.slick-active i {
    color: #1E73BE !important;
}

.page-id-9275 .service_page_contact_form .dt-sc-one-half {
    display: inline;
    width: 49%;
    margin-bottom: 0;
}

.page-id-9275 .service_page_contact_form .dt-sc-one-half p {
    margin-bottom: 0;
}

.page-id-9275 .wpcf7-form-control {
    background-color: #e7e9eb !important;
    border: 2px solid #e7e9eb !important;
    border-radius: 10px !important;
    font-family: 'Roboto';
}

.page-id-9275 .wpcf7-form .fa {
    position: relative !important;
    top: 91% !important;
    transform: translateY(244%) !important;
}

.page-id-9275 .wpcf7-form .fa-file-text {
    transform: translateY(280%) !important;
}

.page-id-9275 .wpcf7-form-control:focus-visible {
    outline: none !important;
}

.page-id-9275 .wpcf7-submit {
    padding: 14px 60px !important;
    width: fit-content !important;
    background: #3A4A59 !important;
    float: right !important;
}

.page-id-9275 .wpcf7-submit:hover {
    background: #505d68 !important;
}

.page-id-9275 .contact_left_col .wpb_wrapper p a {
    text-decoration: underline !important;
}

.page-id-9275 .contact_left_col .wpb_wrapper p a:hover {
    color: #000 !important;
}

@media (max-width:1280px) {

    .page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 20px;
    }

    .page-id-9275 .oracle_fusion_left_col .vc_column-inner {
        width: 570px;
    }

}

@media (max-width:1199px) {
    .page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -35px;
    }
}


@media (max-width:991px) {
    .page-id-9275 .oracle_fusion_left_col .vc_column-inner {
        width: 505px;
    }

    .page-id-9275 .oracle_fusion_left_col h1 {
        font-size: 26px !important;
    }

    .page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 150px;
    }
}


@media (max-width:767px) {
    .page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: 15px;
        top: 175px;
    }

    .page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: 25px;
    }
}


@media (max-width:575px) {
    .page-id-9275 .wpcf7-submit {
        float: none !important;
    }

}

@media (max-width:479px) {
    .page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:before {
        top: 20px;
        left: -10px;
    }

    .page-id-9275 .oracle_fusion_main_img .vc_box_border_grey:after {
        right: -10px;
        top: 175px;
    }

    .fusion_expertise_main_section .vc_custom_1750937454539 .fusion_expertise_main_col h2 {
        font-size: 23px;
    }

    .page-id-9275 .oracle_fusion_left_col .vc_column-inner {
        width: 100%;
    }

    .page-id-9275 .key_different_main_section .key_main_row {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    }

    .page-id-9275 .key_different_main_section .key_main_heading {
        font-size: 24px !important;
    }
}


.page-id-9275 .fusion_expertise_main_section .fusion_expertise_right_col .wpb_content_element .wpb_wrapper p {
    line-height: 20px !important;
    margin: 15px 0 0 !important;
}

.page-id-9275 #main {
    margin-top: -20px;
}

.page-id-9275 .vc_section {
    padding: 50px 0 10px;
}

/*engineering css 2 end*/