   /* Banner-specific styles */
   .ai-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 100px
}

.banner-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.banner-content-1 {
    max-width: 500px;
    z-index: 10;
    margin-left: 150px;

}

.banner-content-1 h1 {
    font-size: 50px;
    color: #0a0e3b;
 
    margin-bottom: 20px;
}

.banner-content-1 p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    background-color: #095d40;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: #095d40;
}

.banner-btn svg {
    margin-right: 10px;
}

/* Robot container and animation */
.robot-container {
    position: relative;
    width: 400px;
    height: 400px;
    perspective: 1000px;
    z-index: 5;
}

.robot-image {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-image img {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Decorative elements */
.gear {
    position: absolute;
    background-color: #004aad;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.gear::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background-color: white;
    border-radius: 50%;
}

.gear.large {
    width: 120px;
    height: 120px;
    bottom: 100px;
    left: -80px;
    animation: spin 20s infinite linear;
}

.gear.small {
    width: 80px;
    height: 80px;
    top: 80px;
    right: -40px;
    animation: spin 15s infinite linear reverse;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #0056b3 0%, #0a704d 100%);


    border-radius: 100% 100% 0 0 / 200% 200% 0 0;
    z-index: 1;
}

.dots {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #004aad;
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.dot:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    top: 60%;
    left: 60%;
    animation-delay: 1s;
}

.dot:nth-child(4) {
    top: 40%;
    left: 40%;
    animation-delay: 1.5s;
}

.dot:nth-child(5) {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.dot:nth-child(6) {
    top: 10%;
    right: 40%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .banner-container {
        flex-direction: column;
        padding: 50px 5%;
    }
    
    .banner-content-1 {
        text-align: center;
        margin-bottom: 50px;
        margin: auto;
     
    }
    
    .banner-content-1 h1 {
        font-size: 2.5rem;
    }
    
    .robot-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .banner-content-1 h1 {
        font-size: 2rem;
    }
    
    .robot-container {
        width: 250px;
        height: 250px;
    }
    
}

   
/* About section styles */
.about-style-two {
position: relative;
background: #fff;
padding: 130px 0px 80px 0px;
}

.auto-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}

.clearfix::after {
content: "";
clear: both;
display: table;
}

.col-lg-7, .col-md-12, .col-sm-12 {
position: relative;
padding: 0 15px;
}

.col-lg-7 {
flex: 0 0 58.333333%;
max-width: 58.333333%;
}

.col-lg-5 {
flex: 0 0 41.666667%;
max-width: 41.666667%;
}

/* Image block styles */
#image_block_01 {
position: relative;
}

#image_block_01 .image-box {
position: relative;
display: block;
margin: 20px 55px 0px 0px;
perspective: 1000px;
}

#image_block_01 .image-box .pattern-layer {
position: absolute;
left: -65px;
top: -60px;
width: 574px;
height: 505px;
background: linear-gradient(135deg, rgb(0, 86, 179) 0%, rgb(10, 112, 77) 100%);
border-radius: 30px;
background-repeat: no-repeat;
z-index: -1;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* 3D Image container */
.image-container {
position: relative;
width: 100%;
height: 450px;
perspective: 1000px;
transform-style: preserve-3d;

}

.image-wrapper {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.3s ease;

}

/* Only apply hover effect on desktop */
@media (min-width: 993px) {
.image-wrapper:hover {
transform: rotateY(5deg) rotateX(5deg);
}
}



.front-card {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0755f0 0%, #a19cff 100%);

border-radius: 20px;
transform: translateZ(0);
overflow: hidden;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.468);
}

.front-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(255, 255, 255, 0.212) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255, 255, 255, 0.184) 1px, transparent 1px);
background-size: 20px 20px;
z-index: 1;
}

.ai-head {
position: absolute;
width: 100%;
height: 100%;
background-image: url('assets/images/ai-head.png');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
z-index: 2;
}

/* Content block styles */
#content_block_03 .content-box {
position: relative;
z-index: 1;
}

#content_block_03 .content-box .sec-title {
margin-bottom: 32px;
}

.sec-title {
position: relative;
}

.sec-title.style-two.text-left p {
color: #00a8c5;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}

.sec-title h2 {
font-size: 40px;
line-height: 1.2;
color: #040535;
font-weight: 700;
margin-bottom: 15px;
}

.decor {
width: 70px;
height: 5px;
margin-bottom: 20px;

background-position: center;
background-repeat: no-repeat;
}

#content_block_03 .content-box .text {
position: relative;
padding-bottom: 43px;
margin-bottom: 39px;
border-bottom: 1px solid #e5e5e5;
}

#content_block_03 .content-box .text p {
font-size: 16px;
line-height: 1.6;
color: #666;
}

#content_block_03 .content-box .lower-box {
position: relative;
padding: 0px 0px 0px 85px;
}

#content_block_03 .content-box .lower-box .icon-box {
position: absolute;
left: 0px;
top: -6px;
width: 63px;
height: 63px;
line-height: 63px;
text-align: center;
}


#content_block_03 .content-box .lower-box .icon-box .bg-box {
position: absolute;
left: 0px;
top: 0px;
width: 63px;
height: 63px;

background-repeat: no-repeat;
}

#content_block_03 .content-box .lower-box h5 {
position: relative;
font-size: 18px;
line-height: 26px;
color: #040535;
font-weight: 700;
margin-bottom: 2px;
}

#content_block_03 .content-box .lower-box a {
position: relative;
display: inline-block;
font-size: 16px;
font-weight: 600;
color: #00a8c5;
text-decoration: none;
}

#content_block_03 .content-box .lower-box a:hover {
text-decoration: underline;
}

.arrow-icon {
font-size: 14px;
font-weight: 400;
margin-right: 10px;
}

/* Improved Responsive styles */
@media (max-width: 992px) {
.about-style-two {
padding: 80px 0px 50px 0px;
}

.row {
flex-direction: column;
}

.col-lg-7, .col-lg-5 {
flex: 0 0 100%;
max-width: 100%;
}

#image_block_01 .image-box {
margin: 0 0 50px 0;
}

/* Flatten the 3D effect on mobile */
.image-container {
height: 400px;
max-width: 500px;
margin: 0 auto;
perspective: none;
}

.image-wrapper {
transform-style: flat;
transition: none;
}

.back-card {
transform: translateZ(0) translateX(10px) translateY(10px);
}
}

@media (max-width: 768px) {
.about-style-two {
padding: 60px 0px 40px 0px;
}

.sec-title h2 {
font-size: 32px;
}

.image-container {
height: 350px;
}

#content_block_03 .content-box .lower-box {
padding: 0px 0px 0px 75px;
}

/* Adjust pattern layer for mobile */
#image_block_01 .image-box .pattern-layer {
left: -30px;
top: -30px;
width: 100%;
background-size: contain;
}
}

@media (max-width: 576px) {
.about-style-two {
padding: 50px 0px 30px 0px;
}

.image-container {
height: 280px;
max-width: 100%;
}

.sec-title h2 {
font-size: 26px;
}

#content_block_03 .content-box .lower-box {
padding: 0px 0px 0px 70px;
}

#content_block_03 .content-box .text {
padding-bottom: 30px;
margin-bottom: 30px;
}

.sec-title.style-two.text-left p {
font-size: 16px;
}

#content_block_03 .content-box .text p {
font-size: 15px;
}

/* Further flatten the 3D effect on small mobile */
.back-card {
width: 95%;
height: 95%;
transform: translateX(5px) translateY(5px);
}

/* Adjust pattern layer for small mobile */
#image_block_01 .image-box .pattern-layer {
left: -10px;
top: -10px;
width: 100%;
height: 100%;
background-size: contain;
}
}

/* Fix for very small screens */
@media (max-width: 375px) {
.image-container {
height: 250px;
}

#content_block_03 .content-box .lower-box {
padding: 0px 0px 0px 65px;
}

#content_block_03 .content-box .lower-box .icon-box {
width: 55px;
height: 55px;
line-height: 55px;
}

.brain-icon {
font-size: 26px;
line-height: 55px;
}

#content_block_03 .content-box .lower-box h5 {
font-size: 16px;
}
}

/* Main Container Styles */
.owl-container {
width: 100%;
max-width: 1200px;
margin: 50px auto;
padding: 0 20px;
position: relative;
}

.owl-carousel-wrapper {
position: relative;
padding: 30px 0;
}

.owl-progress-dots {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 30px;
}

.owl-dot {
width: 12px;
height: 12px;
border: 2px solid #2ce5bd;
border-radius: 50%;
cursor: pointer;
transition: background-color 0.3s ease;
}

.owl-dot.owl-active {
background-color: #2ce5bd;
}

.owl-carousel {
position: relative;
overflow: hidden;
min-height: 450px;
}

.owl-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
}

.owl-slide.owl-active {
opacity: 1;
visibility: visible;
}

.owl-cards-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.owl-card {
background: linear-gradient(135deg, #0056b3 0%, #0a704d 100%);
border-radius: 10px;
padding: 30px;
width: calc(33.333% - 20px);
min-width: 300px;
position: relative;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
flex-grow: 1;
max-width: 350px;
}

@media (min-width: 992px) {
.owl-card:hover {
transform: translateY(-10px);
}
}

/* White overlay effect */
.owl-card::before {
content: '';
position: absolute;
top: -100%;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.2);
transition: top 0.3s ease;
z-index: 1;
}

@media (min-width: 992px) {
.owl-card:hover::before {
top: 0;
}
}

.owl-card-title {
position: absolute;
top: 20px;
left: 20px;
font-size: 60px;
font-weight: bold;
color: rgba(255, 255, 255, 0.059);
letter-spacing: 5px;
z-index: 0;
}

.owl-icon-container {
margin: 40px 0 20px;
color: #ffffff;
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
height: 80px;
position: relative;
}

.owl-icon-container i {
background-color: rgba(44, 229, 189, 0.1);
padding: 15px;
border-radius: 50%;
}

.owl-heading {
font-size: 24px;
margin-bottom: 15px;
font-weight: 600;
color: #ffffff;
}

.owl-description {
color:#ffffff  !important;
margin-bottom: 30px;
line-height: 1.5;
}

.owl-read-more {
color: #ffffff;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
font-weight: 500;
transition: gap 0.3s ease;
}

@media (min-width: 992px) {
.owl-read-more:hover {
gap: 15px;
}
}

.owl-carousel-controls {
display: flex;
justify-content: space-between;
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
z-index: 5;
padding: 0 10px;
}

.owl-prev, .owl-next {
background-color: #17ffcd51;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #0e0e0e;
cursor: pointer;
transition: background-color 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
background-color: #17ffcdb6;
}

.owl-background-grid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
radial-gradient(circle at 10% 20%, rgba(44, 229, 189, 0.05) 0%, transparent 50%),
linear-gradient(rgba(44, 229, 189, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(44, 229, 189, 0.03) 1px, transparent 1px);
background-size: 100% 100%, 30px 30px, 30px 30px;
z-index: -1;
}

/* Tablet View */
@media (max-width: 1000px) {
.owl-cards-container {
justify-content: center;
}

.owl-card {
width: calc(50% - 20px);
}
}

/* Mobile View */
@media (max-width: 768px) {
.owl-carousel {
min-height: 400px;
}

.owl-cards-container {
display: flex;
flex-wrap: nowrap;
overflow-x: hidden;
justify-content: flex-start;
width: 100%;
}

.owl-slide.owl-active .owl-cards-container {
display: flex;
flex-direction: row;
overflow-x: hidden;
}

.owl-card {
width: 100%;
min-width: 100%;
flex-shrink: 0;
display: none;
}

.owl-card.mobile-active {
display: block;
}

/* Show only the first card by default */
.owl-slide.owl-active .owl-card:first-child {
display: block;
}

.owl-carousel-controls {
bottom: 20px;
top: auto;
transform: none;
width: 100%;
justify-content: center;
gap: 20px;
}
}



/* About section alternative styles */
.about-section-alt {
position: relative;
background: #fff;
padding: 130px 0px 80px 0px;
}

.container-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.flex-row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}

.clearfix-alt::after {
content: "";
clear: both;
display: table;
}

.col-content, .col-image {
position: relative;
padding: 0 15px;
}

.col-content {
flex: 0 0 41.666667%;
max-width: 41.666667%;
}

.col-image {
flex: 0 0 58.333333%;
max-width: 58.333333%;
}

/* Content section styles */
#content_section_01 .content-wrapper {
position: relative;
z-index: 1;
padding-right: 30px;
}

#content_section_01 .content-wrapper .section-heading {
margin-bottom: 32px;
}

.section-heading {
position: relative;
}

.section-heading.style-alt.text-left p {
color: #00a8c5;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}

.section-heading h2 {
font-size: 40px;
line-height: 1.2;
color: #040535;
font-weight: 700;
margin-bottom: 15px;
}

.divider-line {
width: 70px;
height: 5px;
margin-bottom: 20px;
background-color: #00a8c5;
border-radius: 2.5px;
}

#content_section_01 .content-wrapper .description-text {
position: relative;
padding-bottom: 43px;
margin-bottom: 39px;
border-bottom: 1px solid #e5e5e5;
}

#content_section_01 .content-wrapper .description-text p {
font-size: 16px;
line-height: 1.6;
color: #666;
}

#content_section_01 .content-wrapper .bottom-content {
position: relative;
padding: 0px 0px 0px 85px;
}

#content_section_01 .content-wrapper .bottom-content .icon-container {
position: absolute;
left: 0px;
top: -6px;
width: 63px;
height: 63px;
line-height: 63px;
text-align: center;
}

#content_section_01 .content-wrapper .bottom-content .icon-container .icon-background {
position: absolute;
left: 0px;
top: 0px;
width: 63px;
height: 63px;
background-color: #00a8c5;
border-radius: 50%;
opacity: 0.2;
}

#content_section_01 .content-wrapper .bottom-content h5 {
position: relative;
font-size: 18px;
line-height: 26px;
color: #040535;
font-weight: 700;
margin-bottom: 2px;
}

#content_section_01 .content-wrapper .bottom-content a {
position: relative;
display: inline-block;
font-size: 16px;
font-weight: 600;
color: #00a8c5;
text-decoration: none;
}

#content_section_01 .content-wrapper .bottom-content a:hover {
text-decoration: underline;
}

.icon-shield {
font-size: 28px;
line-height: 63px;
color: #00a8c5;
}

.icon-arrow {
font-size: 14px;
font-weight: 400;
margin-right: 10px;
}

/* Image section styles */
#image_section_01 {
position: relative;
}

#image_section_01 .image-wrapper {
position: relative;
display: block;
margin: 20px 0px 0px 55px;
perspective: 1000px;
}



/* 3D Image container */
.image-container-alt {
position: relative;
width: 100%;
height: 450px;
perspective: 1000px;
transform-style: preserve-3d;
}

.image-transform-wrapper {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.3s ease;
}

/* Only apply hover effect on desktop */
@media (min-width: 993px) {
.image-transform-wrapper:hover {
transform: rotateY(-5deg) rotateX(5deg);
}
}

.front-panel {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0755f0 0%, #a19cff 100%);
border-radius: 20px;
transform: translateZ(0);
overflow: hidden;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.519);
}

.front-panel::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(255, 255, 255, 0.212) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255, 255, 255, 0.184) 1px, transparent 1px);
background-size: 20px 20px;
z-index: 1;
}

.ai-image {
position: absolute;
width: 100%;
height: 100%;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
}

.ai-image img {
max-width: 100%;
max-height: 100%;
}

/* Improved Responsive styles */
@media (max-width: 992px) {
.about-section-alt {
padding: 80px 0px 50px 0px;
}

.flex-row {
flex-direction: column-reverse;
}

.col-content, .col-image {
flex: 0 0 100%;
max-width: 100%;
}

#image_section_01 .image-wrapper {
margin: 0 0 50px 0;
}

/* Flatten the 3D effect on mobile */
.image-container-alt {
height: 400px;
max-width: 500px;
margin: 0 auto;
perspective: none;
}

.image-transform-wrapper {
transform-style: flat;
transition: none;
}

#content_section_01 .content-wrapper {
padding-right: 0;
}
}

@media (max-width: 768px) {
.about-section-alt {
padding: 60px 0px 40px 0px;
}

.section-heading h2 {
font-size: 32px;
}

.image-container-alt {
height: 350px;
}

#content_section_01 .content-wrapper .bottom-content {
padding: 0px 0px 0px 75px;
}

/* Adjust pattern layer for mobile */
#image_section_01 .image-wrapper .pattern-background {
right: -30px;
top: -30px;
width: 100%;
background-size: contain;
}
}

@media (max-width: 576px) {
.about-section-alt {
padding: 50px 0px 30px 0px;
}

.image-container-alt {
height: 280px;
max-width: 100%;
}

.section-heading h2 {
font-size: 26px;
}

#content_section_01 .content-wrapper .bottom-content {
padding: 0px 0px 0px 70px;
}

#content_section_01 .content-wrapper .description-text {
padding-bottom: 30px;
margin-bottom: 30px;
}

.section-heading.style-alt.text-left p {
font-size: 16px;
}

#content_section_01 .content-wrapper .description-text p {
font-size: 15px;
}

/* Adjust pattern layer for small mobile */
#image_section_01 .image-wrapper .pattern-background {
right: -10px;
top: -10px;
width: 100%;
height: 100%;
background-size: contain;
}
}

/* Fix for very small screens */
@media (max-width: 375px) {
.image-container-alt {
height: 250px;
}

#content_section_01 .content-wrapper .bottom-content {
padding: 0px 0px 0px 65px;
}

#content_section_01 .content-wrapper .bottom-content .icon-container {
width: 55px;
height: 55px;
line-height: 55px;
}

.icon-shield {
font-size: 26px;
line-height: 55px;
}

#content_section_01 .content-wrapper .bottom-content h5 {
font-size: 16px;
}
}



/* Work Process Section */
.work-process {
position: relative;
background: linear-gradient(135deg, #0056b3 0%, #0a704d 100%);

padding: 80px 0 150px;
color: white;
text-align: center;
overflow: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;

}

/* Section Header */
.section-header {
margin-bottom: 80px;
}

.subtitle {
font-size: 14px;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 15px;
display: block;
}

.work-title {
font-size: 36px;
font-weight: 700;
margin-bottom: 20px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.3;
color: white;
}

.divider {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
margin-top: 20px;
}

.divider span {
display: inline-block;
height: 4px;
width: 10px;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 2px;
}

.divider span:nth-child(2) {
width: 20px;
}

/* Process Flow */
.process-flow {
position: relative;
display: flex;
flex-direction: column;
gap: 30px;
}

/* Icon Row */
.icon-row {
display: flex;
justify-content: space-around;
align-items: center;
width: 80%;
margin: 0 auto;
}

.icon-circle {
width: 80px;
height: 80px;
background-color: transparent;
border: 2px dashed rgba(255, 255, 255, 0.7);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

@media (min-width: 992px) {
.icon-circle:hover{
background-color: rgba(1, 47, 133, 0.389);
transition: background-color 0.3s ease;
}
}

.icon-circle img {
width: 40px;
height: 40px;
}

/* Arrows */
.arrow {
position: relative;
width: 120px;
height: 40px;
}

.arrow::before {
content: '';
position: absolute;
top: 20px;
left: 0;
width: 100%;
height: 2px;
background: rgba(255, 255, 255, 0.7);
border-top: 2px dashed rgba(255, 255, 255, 0.7);
}

.arrow::after {
content: '';
position: absolute;
top: 15px;
right: 0;
width: 12px;
height: 12px;
border-top: 2px solid rgba(255, 255, 255, 0.7);
border-right: 2px solid rgba(255, 255, 255, 0.7);
transform: rotate(45deg);
}

/* Timeline */
.timeline {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: 0 auto;
height: 40px;
}

.timeline-line {
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 2px;
background-color: rgba(255, 255, 255, 0.3);
z-index: 1;
}



.number-circle-1 {
width: 40px;
height: 40px;
background-color: white;
color: black;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin-left: 125px;
z-index: 2;
}
.number-circle-2 {
width: 40px;
height: 40px;
background-color: white;
color: black;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
z-index: 2;
}
.number-circle-3 {
width: 40px;
height: 40px;
background-color: white;
color: black;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin-right: 127px;
z-index: 2;
}

.number-circle span {
color: #6a7bff;
font-weight: 700;
font-size: 14px;
}

/* Process Cards */
.process-cards {
display: flex;
justify-content: space-around;
gap: 30px;
width: 80%;
margin: 0 auto;
}


.process-card {
background-color: white;
border-radius: 10px;
padding: 30px;
text-align: center;
position: relative;
flex: 1;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-notch {
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 20px;
background-color: white;
clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.process-card h3 {
color: #333;
font-size: 22px;
margin-bottom: 15px;
font-weight: 700;
}

.process-card p {
color: #666;
font-size: 15px;
line-height: 1.6;
}

/* Wave Bottom */
.wave-bottom {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background-color: white;
border-radius: 100% 100% 0 0 / 100px;
}

/* Responsive Styles */
@media (max-width: 992px) {
.icon-row, .timeline, .process-cards {
width: 100%;
}

.arrow {
width: 80px;
}
}

@media (max-width: 768px) {
.title {
font-size: 28px;
}

.work-process {
padding: 60px 0 120px;
}

.process-flow {
flex-direction: column;
}

.icon-row {
display: none;
}

.timeline {
margin-bottom: 20px;
}

.process-cards {
flex-direction: column;
align-items: center;
}

.process-card {
max-width: 100%;
width: 100%;
margin-bottom: 40px;
}
}

@media (max-width: 576px) {
.title {
font-size: 24px;
}

.process-card {
padding: 20px;
}

.process-card h3 {
font-size: 18px;
}

.process-card p {
font-size: 14px;
}

.timeline {
width: 90%;
}
}
