
.image-container {
    position: relative;
}

.floating-box {
    position: absolute;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 150px;
    transition: all 0.5s ease;
}

.floating-box:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-box-1 {
    top: 31px;
    left: -14px;
    animation: float 4s ease-in-out infinite;
}

.floating-box-2 {
    bottom: -2px;
    right: -88px;
    animation: float 5s ease-in-out infinite;
}

.floating-box-3 {
    top: 0px;
    left: 458px;
    position: absolute;
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    width: 162px;
    transition: all 0.5s ease;
}

    /* @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .floating-box-4 {
        top: -68px;
        left: 396px;
        position: absolute;
        border-radius: 12px;
        padding: 10px;
        width: 162px;
        transition: all 0.5s ease;
        animation: spin 5s linear infinite;
 
    } */


    .box-content p {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
    }

    .box-content img {
        width: 100%;
        height: auto;
    }

    .list-unstyled li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .list-unstyled li i {
        margin-right: 10px !important;
        color: #ec1e21 !important;
    }

    h1 span {
        color: #007bff;
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }

        100% {
            transform: translateY(0px);
        }
    }


    /* /////////////// */
    .carousel-item {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .custom-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 40px;
        text-align: center;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        width: 300px;
        overflow: hidden;
    }

    .custom-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .custom-card .content {
        position: relative;
        z-index: 2;
    }

    .custom-card h3 {
        font-size: 1.5em;
        font-weight: 600;
        margin-bottom: 15px;
        color: #000;
        transition: color 0.4s ease;
    }

    .custom-card p {
        color: #666;
        margin-bottom: 20px;
    }

    .custom-card a {
        color: #007bff;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.4s ease;
    }

    .custom-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: -100%;
        bottom: 0;
        left: 0;
        background-color: #ff0000;
        transition: right 0.4s ease;
        z-index: 1;
    }

    .custom-card:hover::before {
        right: 0;
    }

    .custom-card:hover h3,
    .custom-card:hover a {
        color: #fff;
    }

    .service-heading {
        color: #000000cc !important
    }

    .services-section {
        /* background-color: #f9f9f9; */
    }

    .carousel-inner {
        padding: 0 60px !important;
        /* Add space for the arrows on both sides */
    }

    .carousel-item {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        /* Add padding inside the carousel */
    }

    .service-card {
        position: relative;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 30px;
        text-align: left;
        transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
        overflow: hidden;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(to right, #0c0101, #570606);
        transition: left 1s ease; /* Slow gradient effect */
        z-index: -1; /* Ensures it stays behind the text */
    }
    .service-card:hover::before {
        left: 0; /* On hover, the gradient moves fully */
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        /* .service-card {
            margin-bottom: 20px;
        } */
    }    
    /* Ensure hover effect stays */
    .service-card:hover {
        transform: translateX(10px); /* Gradual slide effect from left */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        background: linear-gradient(to right, #0c0101, #570606);
    }

    .service-card h4,
    .service-card p,
    .service-card a {
        transition: color 0.5s ease;
    }

    .service-card:hover h4,
    .service-card:hover p,
    .service-card:hover a {
        color: #fff !important;
    }

    /* Adjust the card heading and paragraph colors */
    .service-card h4 {
        color: #d62f2f;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #666;
        flex-grow: 1;
        /* Allows description to take available space */
    }

    .service-learn-more {
        color: #ec1e21 !important;
        text-decoration: none;
        font-weight: 600;
        margin-top: auto;
    }
    .text-danger{
        font-size: 12px;
        color: #ec1e21 !important;
    }

    .service-learn-more:hover {
        color: #ffffff;
    }

    /* Adjust the card heading and paragraph colors */
    .service-card h4 {
        color: #d62f2f;
        /* Custom heading color */
        font-weight: 600;
        margin-bottom: 15px;
        transition: color 0.4s ease;
        font-size: 1.3rem;
        margin-bottom: 10px !important;
    }

    .service-card p {
        color: #666;
        transition: color 0.4s ease;
        flex-grow: 1;
        /* Allows description to take available space */
    }

    /* Transition control for smooth hover */
    .service-card:hover h4 {
        color: white;
    }

    .service-card:hover p {
        color: white;
    }

    /* Carousel Controls */
    /* .carousel-control-prev,
    .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.5);
   
        border-radius: 50%;
        color: #fff;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    } */
    .carousel-control-prev {
        position: absolute;
        top: 107px !important;
        bottom: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 15%;
        padding: 0;
        color: var(--dark);
        text-align: center;
        background: rgb(10, 9, 9) !important;
        height: 53px !important;
        width: 50px !important;
        border: 0;
        opacity: .5;
        transition: opacity .15s ease;
        border-radius: 50% !important;
    }

    .carousel-control-next {
        position: absolute;
        top: 107px !important;
        bottom: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 15%;
        padding: 0;
        color: var(--dark);
        text-align: center;
        background: rgb(10, 9, 9) !important;
        color: red !important;
        height: 53px !important;
        width: 50px !important;
        border: 0;
        opacity: .5;
        transition: opacity .15s ease;
        border-radius: 50% !important;
    }

    .carousel-control-prev {
        left: 20px;
        /* Adjust as needed */
    }

    .carousel-control-next {
        right: 20px;
        /* Adjust as needed */
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: rgba(0, 0, 0, 0.7);
        /* Darker on hover */
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-image: none;
        /* Remove default background */
        background-color: transparent;
        /* Ensure no background color */
        color: black;
        /* Set the icon color to black */
        width: 30px;
        /* Adjust width if needed */
        height: 30px;
        /* Adjust height if needed */
        display: inline-block;
        font-size: 2rem;
        /* Adjust icon size */
    }

    /* Make the arrow controls visible */
    .visible-control {
        background-color: #000 !important;
        width: 40px !important;
        height: 40px !important;
    }

    .carousel-indicators button {

        background: black !important;
        border-radius: 50%;
        width: 15px !important;
        height: auto !important;
    }

    .carousel-indicators .active {
        background-color: #007bff;
    }

    .carousel-indicators {
        position: absolute;
        bottom: -27px !important;
        color: black !important;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
    }

    /* ////////////////// */
    .technologies-section {
        background-color: #f8f9fa;
    }

    .technology-wrapper {
        position: relative;
        width: 150px;
        /* Fixed width for all cards */
        height: 150px;
        /* Fixed height for all cards */
        overflow: hidden;
        border-radius: 15px;
        /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        transition: transform 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .technology-wrapper:hover {
        transform: scale(1.1);
        /* Slight zoom-in on hover */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .technology-icon {
        width: 80%;
        /* Ensure that images are responsive inside the wrapper */
        height: auto;
        filter: grayscale(100%) brightness(70%);
        /* Add shade and grayscale */
        transition: filter 0.3s ease, transform 0.3s ease;
    }

    .technology-wrapper:hover .technology-icon {
        filter: none;
        /* Clears the shade on hover */
    }


    /* /////////////// */
    .zoom-on-hover {
        transition: transform 0.7s ease;
    }

    .zoom-on-hover:hover {
        transform: scale(1.1);
    }

    .feature-card {
        height: 400px !important;
        /* Adjust height as needed */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 15px;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card .card-img-top {
        max-height: 150px;
        /* Adjust the height for images */
        object-fit: cover;
        /* Ensures the image scales correctly inside the card */
        width: 100%;
        /* Make sure the image takes the full width of the card */
        border-radius: 8px;
    }

    /* .card-body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    } */

    .feature-card .card-title {
        font-size: 1rem;
        /* Adjust font size for card title */
    }

    .feature-card .card-text {
        text-align: justify;
        font-size: 0.875rem;
        /* Adjust font size for card text */
    }

    .bg-shape {
        background-color: #E0EFFF;
        border-radius: 50%;
        width: 80%;
        height: 80%;
        z-index: 1;
    }

    .main-image {
        z-index: 2;
        max-width: 100%;
        height: auto;
        position: relative;
    }

    .icon-container {
        position: absolute;
        background-color: white;
        border-radius: 50%;
        padding: 15px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 3;
    }

    .icon-1 {
        top: 20%;
        left: 20%;
    }

    .icon-2 {
        bottom: 20%;
        right: 20%;
    }

    .bi {
        font-size: 1.5rem;
    }

    .work-process-section {
        background-color: #f5f8fd;
        position: relative;
    }

    .steps-nav .nav-link {
        background-color: #fff;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 10px;
        padding: 4px 20px;
        text-align: left;
        transition: all 0.3s ease-in-out;
    }

    .steps-nav .nav-link.active {
        background-color: #d62f2f;
        /* Red background for active */
        color: #fff;
    }

    .steps-nav .nav-link span.step {
        display: inline-block;
        background-color: #fff;
        color: #d62f2f;
        /* Red for the step text */
        font-size: 0.875rem;
        margin-right: 10px;
        padding: 6px 12px;
        border-radius: 50px;
        font-weight: bold;
    }

    .steps-nav .nav-link.active span.step {
        background-color: #fff;
        color: #d62f2f;
    }

    .rounded-card {
        border-radius: 20px;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        /* Soft shadow for card */
    }

    .btn-danger {
        background-color: #d62f2f;
        /* Red for buttons */
        border: none;
    }

    .btn-danger:hover {
        background-color: #a82828;
        /* Darker red on hover */
    }

    .list-unstyled i {
        margin-right: 8px;
    }

    .img-fluid {
        /* border-radius: 15px; */
        /* height: 100% !important; */
    }

    .image-70px {
        width: 100%;
        height: 80px;
        transition: transform 0.3s ease;
    }

    .img-shade {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(218, 159, 159, 0.11);
        /* Darker shade to cover the whole image */
        transition: opacity 0.3s ease;
        z-index: 1;
        /* Ensure the shade appears on top of the image */
        justify-content: center;
        /* Centers child items horizontally */
        align-items: center;
    }

    .language-wrapper:hover .img-shade {
        opacity: 0;
        /* Makes shade disappear */
    }

    .language-wrapper:hover .language-icon {
        transform: scale(1.1);
        /* Slightly zoom in the image */
        filter: none;
        /* Removes the grayscale filter */
    }


    .img-container:hover .image-70px {
        transform: scale(1.1);
        z-index: 0;
        /* Send the image behind the shade when hovering */
    }

    .img-container:hover .img-shade {
        opacity: 0;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        color: #333;
        background-color: var(--bs-white) !important;
    }

    html {
        scroll-behavior: smooth;
    }

    .custom-service-headline {
        font-size: 1.5rem !important;
        /* margin-bottom: 20px !important; */
        position: relative !important;
        /* padding-bottom: 1.5rem !important; */
        font-weight: 600 !important;
        font-family: 'Poppins', sans-serif !important;
        color: rgba(0, 0, 0, 0.877) !important;

    }

    .custom-service-headline2 {
        font-size: 1.5rem !important;
        /* margin-bottom: 20px !important; */
        position: relative !important;
        /* padding-bottom: 1.5rem !important; */
        font-weight: 300 !important;
        font-family: 'Poppins', sans-serif !important;
        color: rgba(0, 0, 0, 0.877) !important;

    }

    service-card */

    .row {
        display: flex;
        align-items: center;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }

    .floating-box {
        position: absolute;
        background-color: white;
        border-radius: 12px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        padding: 10px;
        width: 150px;
        transition: all 0.5s ease;
    }

    .floating-box-1 {
        top: 20px;
        left: 7px;
        animation: float 4s ease-in-out infinite;
    }

    .floating-box-2 {
        bottom: -14px;
        right: -23px;
        animation: float 5s ease-in-out infinite;
    }

    .text-primary {
        color: #007bff;
        font-size: .7rem !important;
    }

    .display-5 {
        font-size: 2.5rem;
    }

    .features-list {
        list-style: none;
        padding-left: 0;
        margin-top: 20px;
    }

    .features-list li {
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .cta-buttons {
        margin-top: 20px;
    }

    .cta-buttons .btn {
        margin-right: 10px;
    }

    .btn-primary {
        background-color: #0061f2;
        border: none;
        padding: 10px 20px;
        font-size: 18px;
        border-radius: 8px;
    }

    .btn-outline-primary {
        border: 2px solid #0061f2;
        padding: 10px 20px;
        font-size: 18px;
        border-radius: 8px;
        color: #0061f2;
    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }

    }

    .card-text {
        margin-bottom: 0;
        text-align: justify;
    }

    /* .card-img-top {
        height: 200px !important;
        width: 300px !important;
    } */
    .checkmark{
        color: green!important;
        font-weight: 900 !important;
        padding: 5px;

    }
    /* web service */
    .custom-heading {
        font-weight: bold;
        color: #dc3545;
    }

    .cta-buttons .btn {
        margin-right: 15px;
        border-radius: 5px;
    }

    .cta-buttons .btn-outline-danger {
        border: 2px solid #dc3545;
        color: #dc3545;
        font-weight: bold;
    }

    .cta-buttons .btn-outline-danger:hover {
        background-color: #dc3545;
        color: white;
    }

    .custom-img {
        width: 100%;
        height: auto;
    }

    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column;
            align-items: start;
        }

        .cta-buttons .btn {
            margin-bottom: 10px;
        }
    }
    .floating-box-3-web {
        top: -65px !important;
        left: -741px !important;
        position: absolute;
        /* background-color: white; */
        border-radius: 12px;
        /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
        padding: 10px;
        width: 162px;
        transition: all 0.5s ease;
    }
    .badge {
        bottom: 40px !important;
        z-index: 1 !important;
        width: 190px !important;
        height: 30px !important;
        left: 50% !important;
        text-align: center;
        padding: 15px;
    }

    /*  */
    .svg_custom {
        background: #e9ecf8 !important;
        border-radius: 10px !important;
        text-align: center;
        padding: 1px !important;
        height: 65px !important;
        width: 65px !important;

    }
    .image-wrapper {
        transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s) !important;
    }
/*  
*/

/* Section Padding */
.projects-section {
    background-color: #f9fafb;
}

/* Section Title Styling */
.sec-title {
    font-size: 32px;
    font-weight: bold;
    color: #2d3748;
}

.sub-title {
    font-size: 16px;
    color: #5a67d8;
    font-weight: 600;
}

/* Project Card Styling */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.project-card img {
    border-radius: 15px;
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Overlay */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-radius: 0 0 15px 15px;
}

/* Overlay Content */
.overlay-content {
    text-align: left;
}

.project-category {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

/* Project Link Icon */
.project-link {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    color: #2d3748;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.project-link:hover {
    background-color: #5a67d8;
    color: #fff;
}

/* Hover Effects */
.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 767px) {
    .project-card img {
        height: 300px;
    }
}

@media (min-width: 768px) {
    .project-card img {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .project-card img {
        height: 450px;
    }
}
/* Feature Card Styling */
.feature-cards {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-align: start !important;
    height: 290px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    border-radius: 15px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icon Animation */
.feature-card-icon img {
    width: 50px;
    margin-bottom: 20px;
    transition: all 0.6s ease-in-out;
    transform-origin: center center;
    opacity: 0.85;
    animation: initialZoom 0.8s ease-in-out;
    /* filter: drop-shadow(0px 0px 10px rgba(0, 123, 255, 0.6));  */
}

.feature-card-icon:hover img {
    /* animation: flipZoomPulse 0.8s ease-in-out forwards; */
    opacity: 1; /* Fully visible after animation */
    /* filter: drop-shadow(0px 0px 20px rgba(0, 123, 255, 0.9));  */
}

/* Box Title */


.feature-card_text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Keyframes for Flip, Zoom, and Pulse */
@keyframes flipZoomPulse {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(180deg) scale(1.2);
    }
    75% {
        transform: rotateY(360deg) scale(1.3);
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
        filter: drop-shadow(0px 0px 20px rgba(0, 123, 255, 1)); /* Final glow */
    }
}

/* Pulse effect after animation */
.feature-card-icon:hover img {
    /* animation: flipZoomPulse 0.8s ease-in-out forwards, pulseGlow 1.5s infinite 0.8s; */
}

/* Pulse keyframe for continuous subtle pulsing */
@keyframes pulseGlow {
    0% {
        transform: scale(1.2);
        filter: drop-shadow(0px 0px 20px rgba(0, 123, 255, 0.9));
    }
    50% {
        transform: scale(1.25);
        filter: drop-shadow(0px 0px 30px rgba(0, 123, 255, 1));
    }
    100% {
        transform: scale(1.2);
        filter: drop-shadow(0px 0px 20px rgba(0, 123, 255, 0.9));
    }
}

/* Initial subtle zoom */
@keyframes initialZoom {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Responsive Design */
/* @media (max-width: 992px) {
    .feature-card-wrap2 {
        margin-bottom: 30px;
    }
} */
.carousel-container {
    position: relative;
    padding: 0 50px;
    /* Adjust padding to fit your layout */
}

.owl-nav-prev,
.owl-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #333;
    /* Button color */
    cursor: pointer;
    z-index: 10;
}

.owl-nav-prev {
    left: 20px;
    /* Position the left button outside the carousel */
}

.owl-nav-next {
    right:0px;
    /* Position the right button outside the carousel */
}

.owl-nav-prev:hover,
.owl-nav-next:hover {
    color: #a70101;
    /* Hover color effect for buttons */
}
.btn-small {
    padding: 5px 10px !important;
    font-size: 10px !important;
    border-radius: 5px !important;
}
.text-highlight{
    font-size: 40px !important;
    font-weight: 400;
    color: #000 !important;
}
.feature-area3 {
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 20px;
}

.feature-item {
    margin-bottom: 20px;
}

.feature-content {
    height: 180px;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-content:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.icon-box {
    flex-shrink: 0;
    margin-right: 20px;
}

.icon-box img {
    width: 50px;
    height: 50px;
}

.text-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.text-box p {
    font-size: 1rem;
    color: #777;
}

@media (max-width: 768px) {
    .feature-content {
        flex-direction: column;
        text-align: center;
    }
    .icon-box {
        margin-bottom: 15px;
    }
}
/* Section Styling */
.about-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.image-wrapper {
    text-align: center;
}

.image-wrapper img {
    max-width: 100% !important;
    height: 240px !important;
}

/* Text Styling */
.content-wrapper {
    padding: 20px;
}

.sub-title {
    display: block;
    font-size: 16px;
    color: #3366ff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 20px;
}

/* Checklist Styling */
.checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.checklist li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.checklist li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* Button Styling */
.th-btn {
    padding: 12px 30px;
    background-color: #3366ff;
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.th-btn:hover {
    background-color: #1d4db2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-wrapper {
      margin-bottom: 30px;
  }
  .content-wrapper {
      text-align: center;
  }
}
  /*  
  */
/* Base Styles for the card */
.feature-cards {
    position: relative;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s ease, transform 0.3s ease;
    overflow: hidden;
    height: 310px !important;
}

.feature-card-icon img {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}
.feature-cards:hover .feature-card-icon img {
    transform: rotateY(180deg); /* 3D flip */
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(105%) contrast(103%);
}

/* Hover Effects */
.feature-cards:hover {
    /* background: linear-gradient(to left, rgba(255, 0, 0, 0.459), transparent); Red gradient from right */
    transform: translateY(0px);
}

.feature-cards:hover .feature-card-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(105%) contrast(103%);
}

.feature-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, white, transparent); /* Gradient starts from left */
    transition: left 1s ease; /* Slow gradient effect */
    z-index: -1; /* Ensures it stays behind the text */
}

/* Text Hover Effects */
.feature-cards h3,
.feature-cards p {
    transition: color 0.3s ease;
}

.feature-cards:hover h3,
.feature-cards:hover p {
    color: #fff !important; 
}

/* Add Pseudo Element for smoother background gradient transition */
.feature-cards::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background: linear-gradient(135deg, #270303e5, #940e0ee0);
    transition: left 0.5s ease;
}
.feature-cards:hover::before {
  left: 0; /* On hover, the gradient moves fully */
}

/* Text Hover Effects */
.feature-cards h3,
.feature-cards p {
  transition: color 0.5s ease; /* Smooth color change for text */
}

/* Responsive Design */
/* @media (max-width: 768px) {
  .feature-cards {
    margin-bottom: 20px;
  }
} */

/* Container Styling */
.about-area {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Text Section */
.sub-title {
    color: #3366ff;
    font-size: 16px;
    margin-bottom: 10px;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Checklist Styling */
.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    margin-bottom: 10px;
    font-size: 16px;
}

.checklist i {
    color: #3366ff;
    font-size: 20px;
    margin-right: 10px;
}

/* Button Styling */
.btn-wrapper {
    margin-top: 20px;
}

.btn-view-client-stories {
    background-color: #3366ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-view-client-stories:hover {
    background-color: #1d4db2;
}

/* Image Group */
.image-groups {
    position: relative;
}

.img1,
.img2,
.img3 {
    border-radius: 15px;
    overflow: hidden;
}

.img1 {
    position: absolute;
    top: -138px;
    left: -190px;
    width: 200px;
}

.img2 {
    position: absolute;
    top: -138px;
    left: 216px;
    width: 180px;
    height: 165px;
}

.img3 {
    position: absolute;
    top: 44px;
    left: 216px;
    width: 179px;
    height: 170px;
}

.experience-box {
    position: absolute;
    bottom: 0;
    left: -6px;
    top: 156px;
    /* height: 20px !important; */
    background-color: var(--bs-highlight-bg);
    color: var(--bs-black);
    padding: 24px;
    border-radius: 10px;
    text-align: center !important;
    z-index: 1;
    font-weight: 400;
    height: 61px;
}


.experience-text {
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
    .image-groups {
        text-align: center;
    }

    .img1,
    .img2,
    .img3 {
        position: relative;
        width: 80px;
        height: 100px;
    }

    .experience-box {
        left: 50%;
        transform: translateX(-50%);
    }
}


.image-box {
    position: relative;
}

.img1 {
    position: relative;
    display: inline-block;
}

.main-image {
    width: 100%;
    max-width: 400px;
}

.img5 {
    position: absolute;
    top: 85px;
    right: 45px;
    animation: float 3s ease-in-out infinite;
}

.floating-image5 {
    width: 100px;
    z-index: 49;
}

/* Keyframes for floating effect */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Content Box */
.content-box {
    padding-left: 30px;
}

.sub-title {
    color: #3366ff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.4;
}

.description {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Two Column Checklist */
.two-column-checklist {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

.checklist i {
    color: #3366ff;
    margin-right: 10px;
}

/* Button */
.btn-get-started {
    display: inline-block;
    background-color: #3366ff;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background-color: #1d4db2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-box {
        padding-left: 0;
        text-align: center;
    }

    .two-column-checklist {
        flex-direction: column;
        align-items: center;
    }

    .checklist ul {
        text-align: center;
    }
}
image.image-box:before {
    position: absolute;
    content: '';


    background: linear-gradient(-45deg, var(red), var(--gray)) !important;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    top: 26%;
    top: 26%;
    left: 25% !important;
}
/* Section Styling */
.why-choose-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.title-area-wrap {
    margin-bottom: 50px;
}

.sub-title {
    color: #3366ff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

.text-theme {
    color: #3366ff;
}

.why-feature-wrap {
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-feature_icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.about-feature_icon img {
    width: 100%;
}

.about-feature_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature_text {
    font-size: 16px;
    color: #666;
}

/* Main Image Styling */
.main-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .sec-title {
        font-size: 28px;
    }

    .why-feature-wrap {
        margin-bottom: 30px;
    }

    .main-image {
        max-width: 250px;
    }

    .about-feature {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .about-feature_icon {
        margin-bottom: 10px;
    }
}


.sub-title {
    color: #3366ff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

.swiper-container {
    width: 100%;
    max-width: 100%;
    height: 450px; /* Adjust height as needed */
    padding: 20px 0;
}

.swiper-slide {
    width: 240px !important;
    height:  840px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.swiper-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Customize pagination dots */
.swiper-pagination-bullet {
    background: #3366ff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Customize navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #3366ff;
}
.image-groups {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 0px;
    animation: fadeInUp 1s ease-in-out;
    /* opacity: 0; */
    animation-fill-mode: forwards;
    top: 255px;
}/* Section Styling */
.working-process-section {
    background: linear-gradient(to right, #0c0101, #570606);
    padding: 80px 0;
    border-radius: 15px;
    color: #fff;
}

/* Section Header */
.sub-title {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.icon-masking img {
    width: 40px;
    margin-bottom: 10px;
}

/* Process Cards */
.process-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.process-card_number {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #b838211a;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card_icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}



.process-card p {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
}

/* Arrow between steps */
.process-card:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .process-card_number {
        top: -20px;
    }

    .process-card {
        margin-bottom: 40px;
    }

    /* Remove arrows in mobile */
    .process-card:after {
        display: none;
    }
}
/* dsfsdfsdsdffs */
.working-process-section {
    background-color: #240000; /* Dark background to match your example */
    padding: 50px 0;
}

.process-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent */
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    width: 200px !important;
}

.process-card_number {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.process-card_icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}


p {
    font-size: 1rem;
    color: #bbb;
}

.arrow-column {
    text-align: center;
}

/* Arrow styling */
svg {
    display: inline-block;
    /* margin-top: 20px; */
}

/* Optional: Hover effect for cards */
.process-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.work-process-section .img-fluid {
    max-width: 100%;
    height: auto;
    height: 250px !important;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.5rem 2rem !important;
}
.article .h3{
    font-size: 1rem !important;
}
.play-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.tab-content img {
    width: 270px !important;
    height: 160px !important;
    object-fit: cover;
}
.nav-pills .nav-link {
    color: rgba(0, 0, 0, 0.795) !important;
    border-radius: var(--bs-nav-pills-border-radius);
}

.work-process-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
}

.title-area-wrap .title-area {
    margin-bottom: 40px;
}

.shadow-title {
    font-size: 120px;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    z-index: -1;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #684df4;
}

.sec-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.process-card-area {
    position: relative;
}

.process-line img {
    position: absolute;
    /* width: 100%; */
    top: 106px;
    left: 84px;
    z-index: 1;
    pointer-events: none !important;
}

.process-card:hover .process-line img {
    /* Ensure that line doesn't change on hover */
    visibility: visible !important;
}


.process-card-wrap {
    display: flex;
    justify-content: center;
    z-index: 2;
    /* Ensure cards are above the line */
}

.process-card {
    z-index: 47;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 250px;
    width: 250px !important;
}

.process-card_number {
    font-size: 24px;
    color: #684df4;
    font-weight: bold;
    margin-bottom: 20px;
    left: 15px;
}

.process-card_icon img {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}

.box-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem !important;
    color: #2d3748 !important;
    margin-bottom: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-card_text {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .shadow-title {
        font-size: 80px;
    }

    .sec-title {
        font-size: 28px;
    }

    .process-card {
        padding: 20px;
    }
}
.process-card:hover {
    background-color: rgb(255 255 255) !important;
    transform: scale(1.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.feature-cards h3, .feature-cards p {
    transition: color 0.5s ease;
    color: #495057 !important;
}
/* .box-title {
    color: #495057c9 !important;
    font-weight: bold;
    margin-bottom: 10px;
}
     */

.services-heading {
    margin-top: 50px;
    text-align: center;
    font-size: 2.5rem;
    color: #2E2E2E;
    font-weight: 700;
}

.services-subheading {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 30px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(0px);
    background-color: #e0f7fa;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #0275d8;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.service-description {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

.btn-contact {
    background-color: #0275d8;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 50px;
    margin-top: 30px;
}

.btn-contact:hover {
    background-color: #0256a8;
}

@media (min-width: 992px) {
    .service-card {
        min-height: 300px;
    }
}

/* Hero Section */
.uiux-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    background-color: #f9fbfd;
    position: relative;
}

.uiux-hero-content {
    max-width: 550px;
}

.uiux-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #0056b3;
}

.uiux-hero h1 span.theme-clr {
    color: #007bff;
}

.uiux-hero p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.uiux-hero .btn {
    font-size: 1.2rem;
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
}

.uiux-hero .btn svg {
    margin-left: 10px;
}

.uiux-hero .hero-image img {
    max-width: 450px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Small icons floating around the hero image */
.uiux-icon {
    position: absolute;
}

.uiux-icon-1 {
    top: 100px;
    right: 150px;
}

.uiux-icon-2 {
    top: 250px;
    right: 120px;
}

.uiux-icon-3 {
    bottom: 150px;
    right: 250px;
}

.uiux-icon-4 {
    top: 300px;
    left: 300px;
}

/* Main Section Styling */

.process-section {
    padding: 60px 0;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #6c757d;
}

/* Process Layout Styling */
.circle-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto 50px;
}

.ux-process .circle-container {
    margin-bottom: 50px;
}

.uiux .step {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1rem;
    color: #007bff;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #007bff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.uiux .step span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.uiux .step p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

/* UX Process Step Positions */
.ux-process .step-1 {
    top: 87%;
    left: 23%;
    transform: translate(-50%, -50%);
}

.ux-process .step-2 {
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);
}
.ux-process .step-3 {
    top: 31%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.ux-process .step-4 {
    top: 52%;
    left: 69%;
    transform: translate(-50%, -50%);
}

.ux-process .step-5 {
    top: 88%;
    left: 77%;
    transform: translate(-50%, -50%);
}
/* UI Process Step Positions */
.ui-process .step-1 {
    top: 18%;
    left: 23%;
    transform: translate(-50%, -50%);
}
.ui-process .step-2 {
    top: 54%;
    left: 31%;
    transform: translate(-50%, -50%);
}
.ui-process .step-3 {
    top: 76%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.ui-process .step-4 {
    top: 54%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.ui-process .step-5 {
    top: 15%;
    left: 77%;
    transform: translate(-50%, -50%);
}

/* Center Text Styling */
.uiux .center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.uiux .separator {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 40px auto;
}

/* SVG for Curved Dotted Line */
.uiux .dotted-line-container {
    position: absolute;
    top: 203px;
    left: 0px;
    width: 100%;
    height: 72%;
    pointer-events: none;
}

.uiux .dotted-line {
    stroke: #007bff;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
    /* Creates the dotted effect */
}
.ui-process .step-circle {
    border-color: #28a745;
}

.ui-process .number {
    color: #28a745;
}

.ui-process .center-text {
    color: #28a745;
}
.choose-area {
    background-color: #0c0c0d;
    background-image: url('assets/img/bg/choose_bg_2.jpg');
    background-size: cover;
    padding: 80px 0;
    color: #fff;
}

.sub-title {
    font-size: 1.2rem;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 20px;
}

.sec-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.sec-text3 {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
}

.choose-feature5-wrap {
    margin-top: 20px;
}

.choose-feature5 {
    display: flex;
    align-items: flex-start;
}

.choose-feature5 .box-icon img {
    width: 50px;
    margin-right: 20px;
}


.box-text {
    font-size: 1rem;
    color: #bbb;
}

.choose-image5 .img1 img {
    max-width: 100%;
    border-radius: 8px;
}

.choose-line img {
    position: absolute;
    bottom: -112px;
    right: -20px;
    z-index: 1;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .sec-title {
        font-size: 1.8rem;
    }

    .choose-feature5 .box-icon img {
        width: 40px;
    }
}

@media (max-width: 576px) {
    .choose-feature5 {
        flex-direction: column;
        align-items: flex-start;
    }

    .choose-feature5 .box-icon {
        margin-bottom: 10px;
    }
}
.erp-roadmap-section {
    background-color: #121212;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    position: relative;
}

.roadmap-step {
    background: linear-gradient(145deg, #2b2b2b, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.roadmap-step:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.5);
}

.roadmap-step::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 10px;
    background: linear-gradient(45deg, #ff5f6d, #ffc371);
    bottom: 0;
    left: -50%;
    transition: all 0.4s ease;
}

.roadmap-step:hover::before {
    left: 0;
}

.roadmap-point {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.step-number {
    font-size: 2.5rem;
    color: #dfdfdfbd !important;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.step-title::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #ff5f6d;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.step-description p {
    color: #d1d1d1;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .roadmap-step {
        margin-bottom: 30px;
    }
}
.step-description p {
    text-align: justify;
    color: #d1d1d1;
    font-size: 1rem;
    line-height: 1.6;
}
.erp-industry-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #2E2E2E;
    margin-bottom: 30px;
}

.tabs {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.tab-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-item {
    margin-right: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
}

.tab-item.active {
    color: #000;
    border-bottom: 3px solid #ff7f50;
}

.long-line {
    width: 100%;
    height: 2px;
    background-color: #3030308f;
    margin-top: 5px;
}

.secondary-tab-list {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
}

.tab-content {
    /* margin-top: 30px; */
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.erp-list {
    list-style: none;
    padding-left: 0;
    color: #555;
    margin-top: 15px;
}

.erp-list li {
    font-size: 1rem;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.erp-list li:before {
    content: "•";
    font-size: 1.2rem;
    color: #ff7f50;
    position: absolute;
    left: 0;
    top: 0;
}

.tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    /* .row {
        flex-direction: column;
    } */
    
    .col-lg-6 {
        width: 100%;
    }
}
.erp-capabilities-section {
    padding: 50px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2E2E2E;
}

.section-description {
    font-size: 1rem;
    color: #6c757d;
}

.capabilities-list {
    margin-top: 30px;
}

.capability-item {
    border-top: 1px solid #272727;
    padding-top: 15px;
    margin-bottom: 30px;
}

.capability-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2E2E2E;
    margin-bottom: 10px;
}

.capability-description {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .section-title, .section-description {
        text-align: center;
    }
    
    .capability-item {
        padding-top: 10px;
    }
}
.erp-industry-section .tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.erp-industry-section .tab-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.erp-industry-section .tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.erp-industry-section .tab-item.active {
    color: #ff0000; /* active tab color */
    border-bottom: 2px solid #ff0000;
}

.erp-industry-section .tab-content {
    margin-top: 20px;
}

.erp-industry-section .tab-pane {
    display: none;
}

.erp-industry-section .tab-pane.active {
    display: block;
}

.erp-list {
    padding-left: 20px;
}

.erp-list li {
    margin-bottom: 10px;
}

.tab-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .erp-industry-section .tab-list {
        flex-direction: column;
    }

    .erp-industry-section .tab-item {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
    }

    .erp-industry-section .row {
        flex-direction: column;
    }

    .tab-image {
        margin-top: 20px;
    }
}
/* Container */
.main-timeline {
    position: relative;
    padding: 0;
    margin: 0;
}

/* The actual timeline (the vertical line) */
.main-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #939597;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Timeline block */
.timeline {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

/* Left side */
.timeline.left {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

/* Right side */
.timeline.right {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

/* Circles on the timeline */
.timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #939597;
    border: 5px solid #eb3c4ec9;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline.left::after {
    right: -13px;
}

.timeline.right::after {
    left: -13px;
}

/* Arrows */
.timeline.left::before {
    content: " ";
    position: absolute;
    top: 18px;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.timeline.right::before {
    content: " ";
    position: absolute;
    top: 18px;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}
.ditigal-marketing .card{
    /* height: 400px !important; */
}
/* Card styling */
.card {

    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card content */
.card-body {
    padding: 5px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #d14530;
}

.card p {
    font-size: 16px;
    margin-bottom: 0;
    color: #666;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .main-timeline::after {
      left: 31px;
  }
  
  .timeline {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
  }
  
  .timeline.left::before,
  .timeline.right::before {
      left: 60px;
      border-width: 10px 10px 10px 0;
      border-color: transparent white transparent transparent;
  }
  
  .timeline.left::after,
  .timeline.right::after {
      left: 18px;
  }
  
  .timeline.left {
      padding-right: 0;
  }
  
  .timeline.right {
      left: 0;
      padding-left: 0;
  }
}


.roadmap .card h3 {
    padding-bottom: 5px;
    font-size: 22px;
    margin-bottom: 10px;
    color: rgba(27, 29, 31, 0.836) !important;
}
.capability-item .box-title {
    color: rgba(3, 3, 3, 0.836) !important;
    font-size: 20px !important;
    font-weight: bold;
    margin-bottom: 10px;
}
/* .justify-content-center {
    padding: 50px !important;
    justify-content: start !important;
} */
.process-card_number {

    color: #ffffff !important;

    background-color: #b83821be;

}
.project-link {
    width: 50px !important;
    height: 50px !important;
    position: absolute;
    top: 29px !important;
    right: 26px !important;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    color: #2d3748;
    transition: background-color 0.3s ease, color 0.3s ease;
}
svg {
    display: inline-block;
    height: 50px;
}
.svg_custom{
    height: 20px !important;
}
.qa-testing-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.qa-testing-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.qa-testing-section p {
    font-size: 16px;
    color: #555;
}

.qa-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.qa-icon {
    margin-right: 20px;
}

.qa-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.qa-card p {
    font-size: 14px;
    color: #555;
}

.qa-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.qa-section p {
    font-size: 16px;
    color: #555;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    .qa-card {
      flex-direction: column;
      text-align: center;
  }
  
  .qa-icon {
      margin-bottom: 15px;
  }
}
.feature-cards h3{
    font-size: 20px !important;
}

.process-card h3{
    font-size: 20px !important;
}

.carousel-inner {
    padding: 0 !important; 
    margin: 0;
}
.carousel-item {
    padding: 0 !important; 
    margin: 0 !important; 
}
html, body {
    font-family: 'Poppins' !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}
.card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #666;
}

@media (min-width: 992px) {
    .next-image{
        height: 560px !important;
        width: 800px !important;
    }
}

.btn:hover {
    background: #ec1e21 !important;
    color: #ffffff;
    transition: all .2s ease;
}
.work-process-section .rounded-card{
    padding: 0px !important;
}
.scroll-to-top i {
    color: #fff;
    padding-top: 8px !important;
}
.process-row{
    padding-left: 20px !important;
}
.it-floating-box-3 {
    top: 34px;
    left: 458px;
    position: absolute;
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    width: 162px;
    transition: all 0.5s ease;
}
.web-floating-box-3 {
    top: -31px;
    left: 458px;
    position: absolute;
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    width: 162px;
    transition: all 0.5s ease;
}
.blog-post .strong {
    font-size: 1.5rem !important;
    /* margin-bottom: 20px !important; */
    position: relative !important;
    /* padding-bottom: 1.5rem !important; */
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif !important;
    color: rgb(33, 37, 41) !important;
}
.ux-floating-box-3 {
    top: 88px;
    left: 458px;
    position: absolute;
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    width: 162px;
    transition: all 0.5s ease;
}
.left{
    text-align: left !important;
}
.process-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    min-height: 350px;
    transition: transform 0.3s ease;
}
.e-commerce .feature-card {
    height: 280px !important;
}
.transmision-floating-box-3 {
    top: 90px;
    left: 458px;
    position: absolute;
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    width: 162px;
    /* transition: all 0.5s ease; */
}
.mobile-floating-box-3 {
    top: 110px;
    left: 458px;
    position: absolute;
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    width: 162px;
    transition: all 0.5s ease;
}
.font * {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
}
.ditigal-marketing .card {
    height: 330px !important;
}