body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* .container-slope {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px;
} */

.section-slope {
    flex: 1;
    text-align: center;
    /* padding: 20px; */
    position: relative;
}

@media (max-width: 1199px) {
    .arrow-img {
        display: none;
    } 
    .section-slope {
        flex: unset !important; /* Remove the flex property */
    }
    .circle-one {
        background-color: #6C5FFC !important;
    }
    .circle-three {
        background-color: #6C5FFC !important;
    }
    .card-two {
        margin-top: 5rem;
    }
    .card-four {
        margin-top: 5rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .how-work-wrapper .col-md-6 {
        width: 50% !important; /* 2 cards per row for medium and larger screens */
        padding: 20px !important; /* Optional spacing between cards */
    }
    .section-slope {
        flex: unset !important; /* Remove the flex property */
    }
}

@media (max-width: 767.98px) {
    .how-work-wrapper .col-md-6 {
        width: 100%; /* 1 card per row for smaller screens */
    }
    .card-two {
        margin-top: 20px;
    }
    .card-four {
        margin-top: 20px;
    }
}

/* .section-slope:not(:last-child) {
    margin-right: 20px;
} */

.circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #7c4dff80;
    color: white;
    font-size: 32px;
}

.sub-heading {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.content-slope {
    font-size: 0.8rem;
    color: var(--black);
    /* margin: 0 auto 15px; */
    line-height: 1.6;
    /* max-width: 200px; */
    text-align: left;
}

.box {
    display: inline-block;
    padding: 10px 30px;
    background-color: #7c4dff;
    color: white;
    font-size: 0.875rem !important;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

/* ul {
    padding-inline-start: 20px;
}

ul li {
    text-align: left;
} */

li svg {
    margin-right: 0.5rem !important;  /* Adds space between the SVG and text */
    vertical-align: middle !important; /* Aligns the SVG with the text */
  }
  
  li {
    display: flex; /* Ensures the SVG and text align horizontally */
    align-items: center; /* Vertically centers the SVG and text */
    text-align: left
  } 

/* .connector {
    position: absolute;
    height: 300px;
    z-index: -1;
}

.section-slope:nth-child(1) .connector {
    top: 210px;
    left: 30%;
    transform: rotate(-20deg);
}

.section-slope:nth-child(2) .connector {
    top: 190px;
    left: 40%;
    transform: rotate(-20deg);
}

.section-slope:nth-child(3) .connector {
    top: 200px;
    left: 40%;
    transform: rotate(-10deg);
} */

@media (min-width: 1200px) {
    .circle-container {
        display: block !important;
    }
    .section-slope {
        flex: 1 !important;
        text-align: center !important;
        /* padding: 20px; */
    }

    .how-work-wrapper .col-xl-3 {
        position: relative !important;
        /* Adjust each card's position manually */
    }

    .circle-one {
        background-color: #6C5FFC !important;
    }
    .circle-three {
        background-color: #6C5FFC !important;
    }
    
    .how-work-wrapper .col-xl-3:nth-child(1) {
        top: 50px !important; /* 1st card at the bottom */
        left: 0 !important;
    }
    
    .how-work-wrapper .col-xl-3:nth-child(2) {
        bottom: 10px !important; 
        left: 15px !important; /* Shifted to the right a little */
    }
    
    .how-work-wrapper .col-xl-3:nth-child(3) {
        bottom: 65px !important; /* 3rd card higher than the 2nd */
        left: 30px !important; /* Shifted further right */
    }
    
    .how-work-wrapper .col-xl-3:nth-child(4) {
        bottom: 120px !important; /* 4th card higher */
        left: 45px !important; /* Further shifted */
    }
}

@media (max-width: 1199.98px) {
    .how-work-wrapper .col-xl-3 {
        position: static !important; /* Remove relative positioning */
        bottom: initial !important;
        left: initial !important;
    }
}


.num-cont {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    justify-content: flex-start; /* Aligns items horizontally at the start */
    gap: 20px; /* Adds space between the circle and SVG */
}




.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear infinite; /* animation runs infinitely */
    animation-delay: 1s;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.dashed {
    stroke-dasharray: 5, 15;
    animation: dashed-line 1s linear infinite; /* dashed line animates continuously */
}

@keyframes dashed-line {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -100;
    }
}

#arrow {
    animation: arrow linear infinite; /* arrow animates continuously */
    opacity: 1;
}

@keyframes arrow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.circle-container {
    position: relative; /* Establish a positioning context for absolute positioning */
    /* display: flex; 
    align-items: center; */
  }
  
.arrow-img {
    margin-left: 2rem !important;
    width: 100%;
} 

.testimonial-overlay {
    margin-top: -500px !important;
}

@media (max-width: 991px) {
    .what-we-wrapper .what-we-content {
        margin-left: 20px !important;
    }
}
  
/* .section-slope:nth-child(1) { height: 200px !important; }
.section-slope:nth-child(2) { height: 275px !important; }
.section-slope:nth-child(3) { height: 350px !important; }
.section-slope:nth-child(4) { height: 400px !important; } */