* {
    /* font-family: "Open Sans", sans-serif; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family:"Tahoma" */

    font-family: "Raleway", sans-serif;
    /* background-color: #fbf8f8; */
}
body::-webkit-scrollbar {
    width: 0.3em;
}

/* body::-webkit-scrollbar-track {

} */

body::-webkit-scrollbar-thumb {
    background-color: #fe9931;
    outline: 1px solid slategrey;
}

.bg_img_blue_with_shadow {
    filter: drop-shadow(5px 5px 10px #fe9931);
}
.carousel_height {
    height: 700px;
}
@media (max-width: 961px) {
    .carousel_height {
        height: 350px;
    }
}

.carousel_title {
    margin-top: -140px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .carousel_title {
        margin-top: -104px;
        /* font-size: 18px; */
        /* margin-top: -95px; */
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .carousel_title {
        margin-top: -82px;
        font-size: 15px;
    }
}

.flip_card_heigth {
    height: 185px !important;
}
.img_custom_filter {
    filter: drop-shadow(5px 5px 10px #fe9931);
}

.read_more_button_postion {
    position: relative;
    margin-top: -67px;
}
.beautiful-underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #6ec71d;
}

.beautiful-underline::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #6ec71d;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center bottom;
    transition: transform 0.3s ease-in-out;
}

.beautiful-underline:hover::before {
    transform: scaleX(1);
}

.beautiful-underline::after {
    content: "";
    position: absolute;
    width: 20px; /* Adjust the width of the line as needed */
    height: 2px;
    background-color: #6ec71d;
    bottom: -6px; /* Adjust the vertical position of the line as needed */
    left: 50%;
    transform: translateX(-50%);
}

.beautiful-underline::before::before {
    content: "\2605";
    font-size: 18px;
    position: absolute;
    bottom: -16px; /* Adjust the vertical position of the star as needed */
    left: 50%;
    transform: translateX(-50%);
}

.color_change {
    position: relative;
    display: inline-block;
    color: white;
}

.color_change::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Adjust the thickness of the underline here */
    background-color: white; /* Adjust the color of the underline here */
    transform: scaleX(0); /* Initially, the underline is invisible */
    transform-origin: bottom left;
    transition: transform 0.3s ease-in-out;
}

.color_change:hover::before {
    transform: scaleX(1); /* When hovered, make the underline visible */
}

.color_change_blue {
    position: relative;
    display: inline-block;
    color: white;
    cursor: pointer;
}

.color_change_blue::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Adjust the thickness of the underline here */
    background-color: #fe9931; /* Adjust the color of the underline here */
    transform: scaleX(0); /* Initially, the underline is invisible */
    transform-origin: bottom left;
    transition: transform 0.3s ease-in-out;
}

.color_change_blue:hover::before {
    transform: scaleX(1); /* When hovered, make the underline visible */
}

.with_zero {
    width: 100%;
}
@media (max-width: 768px) {
    .with_zero {
        margin-top: 92px;
        /* width: auto; */
        /* height: 100vh; */
    }
}
.card_service {
    border-top-right-radius: 10px 10px;
    border-top-left-radius: 50px 50px;
    border-bottom-left-radius: 5px 5px;
    border-bottom-right-radius: 50px 50px;
    box-shadow: 2px 2px 15px 2px #ccc;
    border-color: white;
}
.card_service:hover {
    border-top-right-radius: 50px 50px;
    border-top-left-radius: 10px 10px;
    border-bottom-left-radius: 50px 50px;
    border-bottom-right-radius: 5px 5px;
    box-shadow: 2px 2px 15px 2px #fe9931;
    transform: translateY(-20px);
    cursor: pointer;
}

.card_service:hover .fea-link {
    text-decoration: underline;
    text-decoration-thickness: 1.5px; /* Adjust the thickness as needed */
}

/* .button {
    transition: 0.8s ease;
    background-color: #6ec71d;
    color: white;
    font-size: 14px;
    border-radius: 2rem;
} */

.button:hover {
    /* transition: 0.8s ease; */
    border-color: white;
    background-color: #fe9931;
    color: white;
    font-size: 14px;
}
.beautiful-underline {
    position: relative;
    display: inline-block;
}

.flip-card {
    background-color: transparent;
    /* width: 300px; */
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 80%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #fe9931;
    color: black;
}

.flip-card-back {
    background-color: white;
    color: white;
    transform: rotateY(180deg);
    border-style: solid;
    border-color: #fe9931;
}
.float_card {
    position: relative;
    margin-top: -100px;
    z-index: 9999;
}
@media only screen and (max-width: 768px) {
    .float_card {
        margin-top: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

::selection {
    color: #fff;
    background: #ff7979;
}
.wrapper {
    max-width: 1080px;
    margin: 0px auto;
    padding: 0 20px;
    position: relative;
}
.wrapper .center-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #fe9931;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}
.wrapper .row {
    display: flex;
}
.wrapper .row-1 {
    justify-content: flex-start;
}
.wrapper .row-2 {
    justify-content: flex-end;
}
.wrapper .row section {
    background: #fe9931;
    border-radius: 5px;
    width: calc(50% - 40px);
    padding: 20px;
    position: relative;
    border-radius: 66px;
    border: solid #fe9931;
}
.wrapper .row section::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: #fff;
    top: 28px;
    z-index: -1;
    transform: rotate(45deg);
}
.row-1 section::before {
    right: -7px;
}
.row-2 section::before {
    left: -7px;
}
.row section .icon,
.center-line .scroll-icon {
    position: absolute;
    background: white;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ff7979;
    font-size: 17px;
    box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
        0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.center-line .scroll-icon {
    bottom: 0px;
    left: 50%;
    font-size: 25px;
    transform: translateX(-50%);
}
.row-1 section .icon {
    top: 15px;
    right: -60px;
}
.row-2 section .icon {
    top: 15px;
    left: -60px;
}
.row section .details,
.row section .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row section .details .title {
    font-size: 22px;
    font-weight: 600;
}
.row section p {
    margin: 10px 0 17px 0;
}
.row section .bottom a {
    text-decoration: none;
    background: #ff7979;
    color: #fff;
    padding: 7px 15px;
    border-radius: 5px;
    /* font-size: 17px; */
    font-weight: 400;
    transition: all 0.3s ease;
}
.row section .bottom a:hover {
    transform: scale(0.97);
}
@media (max-width: 790px) {
    .wrapper .center-line {
        left: 40px;
    }
    .wrapper .row {
        margin: 30px 0 3px 60px;
    }
    .wrapper .row section {
        width: 100%;
    }
    .row-1 section::before {
        left: -7px;
    }
    .row-1 section .icon {
        left: -60px;
    }
}
@media (max-width: 440px) {
    .wrapper .center-line,
    .row section::before,
    .row section .icon {
        display: none;
    }
    .wrapper .row {
        margin: 10px 0;
    }
}

.bg_blue_text_white {
    background-color: #fe9931;
    /* #0866a8 */
    color: white;
}
.bg_white_text_blue {
    background-color: white;
    color: #fe9931;
}

.point-list {
    list-style: none;
    padding: 0;
}

.point-list li {
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #6ec71d;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-service {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-service img {
    width: 100px;
    height: 72px;
    margin: 10px 0;
}

.point-list {
    list-style: none;
    padding: 0;
}

.point-list li {
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #6ec71d;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-service {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-service img {
    width: 100px;
    height: 72px;
    margin: 20px 0;
}

.button {
    background-color: #fe9931;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
}

.boder_color_blue {
    border: solid #fe9931;
    border-radius: 10px;
}

.particles_js_design {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #fe9931;
}
.particles_js_card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Adjust the card width as needed */
    background-color: #fe9931;
    border: 0;
}
.common-numbers {
    font-size: 4.8rem;
}

.section-work-data p {
    color: black;
}
.border_color {
    border-color: #757678;
}
.color_blue {
    color: #fe9931;
}

.circular-container {
    width: 150px;
    height: 150px;
    border-radius: 12%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* background-image: url("/assets/img/ProjectSuccessStory/12.png"); */
    background-size: cover;
    background-position: center;
    border: solid white;
}

.circular-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.light_white {
    background-color: #fe9931;
}
@keyframes border-move {
    0% {
        border-top: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid white; /* Adjust the border color and opacity as needed */
    }
    25% {
        border-top: 5px solid white;
        border-right: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid transparent;
    }
    50% {
        border-top: 5px solid transparent;
        border-right: 5px solid white;
        border-bottom: 5px solid transparent;
        border-left: 5px solid transparent;
    }
    75% {
        border-top: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid white;
        border-left: 5px solid transparent;
    }
    100% {
        border-top: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid white; /* Adjust the border color and opacity as needed */
    }
}

/* Apply the animation to the image */
.border-moving-image {
    animation: border-move 4s linear infinite;
}
/* Define the initial state for the image */
.zoom-image {
    transition: transform 0.3s ease; /* Add a smooth transition effect */
}

/* Apply the zoom effect on hover */
.zoom-image:hover {
    transform: scale(1.05); /* Zoom in to 110% size on hover */
}
.all_analysis_card {
    width: 400px;
    border-radius: 20px;
    border: solid #fe9931;
}

.count_card {
    position: relative;
    height: 400px;
}

.bh_filter {
    filter: drop-shadow(5px 5px 10px white);
}
.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.col_md_6_postion_fix {
    position: relative;
    margin-left: -100px;
}

.col_card_postion {
    background-color: #fe9931;
    margin-top: 16px;
    opacity: 0.95;
}

.img_width_height_change {
    width: 95%;
    margin-left: 16px;
}
.img_width_height_change_deep_learning_course {
    width: 635px;
    height: 600px;
}
.remove_text {
    visibility: hidden;
}

@media (max-width: 1025px) {
    .col_md_6_postion_fix {
        position: relative;
        margin-left: 0;
    }

    .img_width_height_change {
        width: auto;
        height: auto;
    }
    .img_width_height_change_deep_learning_course {
        width: auto;
        height: auto;
    }
    .remove_text {
        display: none;
    }
}

.under_line_with_color {
    text-decoration: underline #fe9931;
    text-decoration-thickness: 2px;
    margin-bottom: 5px;
    text-underline-offset: 4px;
}

.under_line_with_color_white {
    text-decoration: underline white;
    text-decoration-thickness: 2px;
    margin-bottom: 5px;
    text-underline-offset: 4px;
}

.vertical_line {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical_line::before {
    content: "";
    width: 2px;
    height: 22px;
    background-color: #fe9931;
    margin-right: 4px;
}

.half-bg-color {
    background-color: #fe9931;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-left: 90px;
    position: relative;
}

.half-bg-color img {
    max-width: 107%;
    height: auto;
    position: absolute;
    margin-right: 140px;
}

@media (max-width: 961px) {
    .half-bg-color {
        background-color: #fe9931;
        width: 100%;
        margin-left: 0px;
        height: auto;
        position: relative;
        padding: 20px;
        /* Add padding to create space for text */
    }

    .half-bg-color img {
        width: 100%;
        height: auto;
        margin-right: 0;
        position: relative;
    }
}

.half-bg-color-left-side {
    background-color: #fe9931;
    height: 500px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    position: absolute;
    /* margin-left: 90px; */
    position: relative;
    margin-right: 121px;
}

.half-bg-color-left-side img {
    max-width: 113%;
    height: auto;
    position: absolute;
    /* margin-right: 140px; */
    margin-left: 30px;
}

@media (max-width: 961px) {
    .half-bg-color-left-side {
        background-color: #fe9931;
        width: 100%;
        margin-left: 0px;
        height: auto;
        position: relative;
        padding: 20px;
        /* Add padding to create space for text */
    }

    .half-bg-color-left-side img {
        width: 100%;
        height: auto;
        margin-left: 0;
        position: relative;
    }
}

.custom-carousel-caption {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}
