*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
} */

section{
    margin-bottom: 80px;
    padding: 0;
}
/* Hero Section */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 600px;
    margin-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    margin-top: 0;
}

.hero-title .highlight {
    color: #5548FF;
    position: relative;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    margin-bottom: 32px;
}

.hero-description strong {
    color: #1a1a1a;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 45px;
}

.btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
}

.btn-primary {
    background: #5548FF;
    color: white;
}

.btn-primary:hover {
    background: #5548FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: white;
    color: #1a1a1a;
    border-color: #1A1A1A;
}

.btn-secondary:hover {
    border-color: #5548FF;
    color: #5548FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hero Right - Chatbot Mockup */
.hero-right {
    flex: 1;
    position: relative;
    max-width: 482px;
}

/* Responsive Design */
@media (min-width: 320px) and (max-width: 767px) {
    .hero-section {
        height: auto;
        margin-top: 0;
        padding-top: 30px;
        background-color: #f5f5f5;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-section::before{
        display: none;
    }
    .hero-title{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .btn{
        white-space: break-spaces;
        padding: 10px 20px;
    }
    .hero-buttons{
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section{
        height: 440px;
    }
    .hero-title{
        font-size: 32px;
    }
    .section-title{
        font-size: 22px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
.hero-content{
    gap: 0;
}
}
/* Get to Know Product Section */

.know-product-content {
    display: flex;
    align-items: center;
    /* gap: 60px;    */
}

.know-product-left {
    flex: 1;
    max-width: 800px;
    position: relative;
    height: 418px;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    margin-top: 0;
}

.section-title .highlight {
    color: #5548FF;
    font-weight: 700;
}

.product-description {
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    padding: 30px;
    color: white;
    line-height: 1.8;
    position: absolute;
    width: 705px;
}

.product-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.product-description a {
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
}

.know-product-right {
    flex: 1;
    position: relative;
    max-width: 500px;
    height: 580px;
}

.product-image-wrapper {
    position: absolute;
    background: #5548FF;
    padding: 30px;
    border-radius: 0;
    height: 580px;
    width: 112%;
    z-index: -1;
    left: -60px;
}

.product-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
/* Responsive for Know Product Section */
@media (min-width: 320px) and (max-width: 767px) {
    .know-product-content{
        flex-direction: column;
    }
    .section-title{
        font-size: 22px;
    }
    .product-description{
        position: relative;
        width: 100%;
        padding: 20px;
    }
    .product-description p{
        font-size: 14px;
    }
    .product-image-wrapper{
        position: relative;
        padding: 20px;
        height: auto;
        width: 100%;
        z-index: -1;
        left: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .know-product-left{
        height: auto;
    }
    .product-description{
        width: 100%;
        position: relative;
    }
    .know-product-right {
        display: none;
    }
}


/* Problems AI Chatbot Solves Section */
.problems-section {
    background: #fff;
}

.problems-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.problems-left {
    flex: 1;
    max-width: 600px;
}

.problems-description {
    margin-bottom: 40px;
}

.problems-description p {
    font-size: 16px;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0;
}

.problems-image {
    width: 100%;
}

.problems-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.problems-right {
    flex: 1;
    max-width: 500px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0;
}

/* Responsive for Problems Section */
@media (min-width: 320px) and (max-width: 767px) {
    .problems-content{
        flex-direction: column;
        gap: 40px;
    }
   .problems-image img{
    height: auto;
    object-fit: cover;
   }
   .problems-description{
    margin-bottom: 20px;
   }
   .problems-description p{
    font-size: 14px;
   }
   .feature-icon{
    width: 40px;
    height: 40px;
   }
   .feature-icon img {
    width: 22px;
    height: 22px;
   }
   .feature-content h3{
    font-size: 18px;
    margin: 0 0 5px 0;
   }
   .feature-content p{
    font-size: 14px;
   }
   .features-list{
    gap: 15px;
   }
}

@media (min-width: 768px) and (max-width: 991px) {
    .problems-content{
        gap: 40px;
    }
    .problems-image img{
        height: auto;
    }
    .feature-content h3{
        font-size: 20px;
    }
}


/* Development Process Section */
.development-process-section {
    background: #fff;
    /* padding: 0; */
}

.development-process-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.development-left {
    flex: 1;
    max-width: 550px;
}

.process-description {
    font-size: 16px;
    line-height: 1.5;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0;
}

.development-right {
    flex: 1;
    max-width: 600px;
    position: relative;
}
.result-box {
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    padding: 30px;
    color: white;
}

.result-box p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: white;
    margin-bottom: 40px;
}

.result-box img{
    width: 100%;
    height: 415px;
    object-fit: cover;
    object-position: top;
}
/* Responsive for Development Process Section */
@media (min-width: 320px) and (max-width: 767px) {
.process-description{
    font-size: 14px;
    margin-bottom: 25px;
}
.step-icon{
    width: 40px;
    height: 40px;
}
.step-icon img{
    width: 22px;
    height: 22px;
}
.step-content h3{
    font-size: 18px;
        margin: 0 0 5px 0;
}
.step-content p{
    font-size: 14px;
}
.development-process-content{
    flex-direction: column;
    gap: 30px;
}
.process-steps{
    gap: 15px;
}
.result-box{
    padding: 20px;
}
.result-box p{
    font-size: 14px;
    margin-bottom: 20px;
}
.result-box img{
    height: auto;
}
}
@media (min-width: 768px) and (max-width: 991px) {
    .development-process-content{
        gap: 40px;
        align-items: center;
    }
    .step-content h3{
        font-size: 20px;
    }
    .result-box img{
        height: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
.result-box img{
    height: auto;
}
}

.ceo-desk-content {
    display: flex;
    align-items: center;
}

.ceo-left {
    max-width: 550px;
}

.ceo-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    margin-top: 0;
}

.ceo-title .highlight {
    color: #5548FF;
    font-weight: 700;
}

.testimonial-box {
    padding: 0;
    position: relative;
}

.testimonial-box::after{
    position: absolute;
    content: "";
    width: 560px;
    height: 200px;
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    top: 0;
    z-index: -1;
}
.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
    font-style: italic;
    padding: 30px 20px 20px;
   
}

.ceo-info {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 0 20px;
    
}

.ceo-signature {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: #5548FF;
    padding: 8px 20px;
    margin-top: 36px;
}

.ceo-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
}

.ceo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ceo-indicator{
    position: absolute;
    bottom: -5px;
    width: 125px;
    left: 55px;
}
.ceo-right {
    flex: 1;
    max-width: 600px;
}

.human-like-image {
    width: 110%;
    position: relative;
    height: 530px;
}

.human-like-image img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    z-index: -2;
    right: 60px;
}

/* Responsive for CEO Desk Section */
@media (min-width: 320px) and (max-width: 767px) {
    .ceo-title{
        font-size: 22px;
    }
    .testimonial-text{
        font-size: 15px;
        padding: 20px;
    }
    .ceo-image-wrapper{
        width: 100px;
        height: 100px;
    }
    .ceo-signature{
        font-size: 15px;
        margin-top: 20px;
    }
    .ceo-indicator{
        bottom: -10px;
        width: 74px;
        left: 90px;
    }
    .testimonial-box::after{
        width: 100%;
    }
    .human-like-image{
        width: 100%;
        height: auto;
    }
    .human-like-image img{
        position: relative;
        right: 0;
    }
    .ceo-desk-content{
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ceo-title{
        font-size: 22px;
    }
    .testimonial-box::after{
        width: 100%;
    }
    .ceo-right{
        display: none;
    }
    .ceo-left{
        max-width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
.human-like-image{
    height: 400px;
}
}
/* Project Challenges Section */
.project-challenges-section {
    margin-top: 90px !important;
    height: 852px;
}

.challenges-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.challenges-left {
    flex: 1;
    max-width: 450px;
}

.challenges-description {
    font-size: 16px;
    line-height: 1.5;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.challenges-image {
    width: 100%;
    position: relative;
}

.challenges-image img {
    width: 100%;
    height: 600px;
    object-fit: fill;
    position: absolute;
    z-index: -1;
    min-width: 1141px;
}

.challenges-right {
    flex: 1;
    max-width: 700px;
}

.challenge-box {
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    padding: 35px;
    margin-right: 30px;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.challenge-item:last-child {
    margin-bottom: 0;
}

.challenge-number {
   font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.challenge-content {
    flex: 1;
}

.challenge-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.challenge-content p {
    font-size: 15px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* Responsive for Project Challenges Section */
@media (min-width: 320px) and (max-width: 767px) {
    .challenges-content{
        flex-direction: column;
        gap: 0;
    }
    .challenges-description{
        font-size: 14px;
            margin-bottom: 20px;
    }
    .challenge-box{
        margin-right: 0;
        padding: 20px;
    }
    .challenge-content h3{
        font-size: 16px;
    }
    .challenge-content p{
        font-size: 14px;
    }
    .challenge-item{
        margin-bottom: 20px;
    }
    .project-challenges-section{
        height: auto;
        margin-top: 0 !important;
    }
    .challenges-image{
        width: 90%;
        margin: auto;
        display: none;
    }
    /* .challenges-image img{
        width: 100%;
        height: auto;
        object-fit: contain;
        position: relative;
        z-index: -1;
        min-width: 100%;
    } */
}
@media (min-width: 768px) and (max-width: 991px) {
    .project-challenges-section{
        height: auto;
    }
    .challenges-content{
        flex-direction: column;
        gap: 0;
    }
    .challenges-image{
        display: none;
    }
    .challenges-left{
        max-width: 100%;
    }
    .challenges-right{
        max-width: 100%;
    }
    .challenge-box{
        margin-right: 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .project-challenges-section{
        height: auto;
    }
.challenges-content{
    flex-direction: column;
    gap: 0;
}
.challenges-left{
    max-width: 100%;
}
.challenges-right{
    max-width: 100%;
}
.challenge-box{
    margin-right: 0;
}
.challenges-image{
    display: none;
}
}
/* Biz4Group Development Process Section */
.biz4group-process-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.biz4group-process-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.biz4group-process-left {
    flex: 1;
    max-width: 550px;
}

.biz4group-process-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.biz4group-process-text:last-child {
    margin-bottom: 0;
}

.biz4group-process-right {
    flex: 1;
    position: relative;
}

.biz4group-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.biz4group-main-img {
    width: 100%;
    height: auto;
}

.biz4group-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    z-index: -1;
}

/* Responsive for Biz4Group Process Section */
@media (min-width: 320px) and (max-width: 767px) {
    .biz4group-process-section{
        padding: 0;
    }
    .biz4group-process-section::before{
        /* display: none; */
        top: 73%;
        right: 0;
        width: 100%;
        height: 14%;
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
        z-index: -1;
        padding: 0 20px;
    }
    .biz4group-process-content{
        flex-direction: column;
    }
    .biz4group-process-text{
        font-size: 14px;
    }
}


/* Tech Stack Section */
.tech-stack-section {
    background: #fff;
}

.tech-stack-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tech-stack-left {
    flex: 1;
    max-width: 500px;
}

.tech-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    background-color: #11111108;
    margin-bottom: 15px;
    padding: 0px 10px;
}

.accordion-item:last-child {
     margin-bottom: 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    gap: 12px;
    transition: all 0.3s ease;
}
/* 
.accordion-header:hover {
    opacity: 0.8;
} */

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

.accordion-toggle {
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.accordion-content img{
    width: fit-content;
    height: 50px;
    object-fit: contain;
}
.accordion-content.active {
    max-height: 200px;
    padding: 15px 0;
    border-top: 1px solid #11111126;
}

.tech-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tech-name {
    font-size: 16px;
    color: #1A1A1A;
}

.tech-stack-right {
    flex: 1;
    max-width: 600px;
}

.tech-stack-image {
    width: 100%;
}

.tech-stack-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive for Tech Stack Section */
@media (min-width: 320px) and (max-width: 767px) {
    .tech-stack-content{
        flex-direction: column;
    }
    .architecture-content{
        gap: 20px;
    }
    .architecture-left{
        padding: 20px;
    }
    .architecture-right{
        padding: 20px;
    }
    .architecture-right img{
        height: auto;
    }
}


.technical-architecture-section .highlight {
    color: #5548FF;
}

.architecture-content {
    display: flex;
    align-items: center;
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    margin-top: 30px;

}

.architecture-left {
    flex: 1;
    padding: 35px;
    border-radius: 0;
}

.architecture-left h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.3;
}

.architecture-left h3:not(:first-child) {
    margin-top: 35px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 5px;
    padding-left: 18px;
    position: relative;
}

.services-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-size: 10px;
    top: 4px;
}

.services-list li strong {
    font-weight: 700;
}

.architecture-right {
    flex: 1;
    max-width: 550px;
    padding: 0 30px 0 0;
}

.architecture-right img {
    width: 100%;
    height: 505px;
    display: block;
}

/* Responsive for Technical Architecture Section */
@media (min-width: 320px) and (max-width: 767px) {
    .architecture-content{
        flex-direction: column;
        padding: 20px;
    }
    .architecture-left{
        padding: 0;
    }
    .architecture-left h3{
        font-size: 18px;
    }
    .architecture-right img{
        height: auto;
    }
    .architecture-right{
        padding: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .architecture-right img{
        height: auto;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
.architecture-right img{
    height: auto;
}
}
/* @media (max-width: 1024px) {
    .architecture-content {
        flex-direction: column;
        gap: 40px;
    }

    .architecture-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .architecture-left {
        padding: 35px 25px;
    }

    .architecture-left h3 {
        font-size: 18px;
    }

    .services-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .architecture-left {
        padding: 30px 20px;
    }

    .architecture-left h3 {
        font-size: 16px;
    }

    .architecture-intro,
    .architecture-description {
        font-size: 13px;
    }
} */


/* =================rpm section */
.rpm-wrapper{
    background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    padding: 30px;
    margin-top: 20px;
    color: #fff;
}
.rpm-content-wrapper{
    width: 100%;
    display: flex;
    gap: 20px;
}

.rpm-left-wrapper{
    max-width: 630px;
}
.rpm-left-wrapper h3{
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}
.rpm-left-wrapper ul{
    margin-left: 30px;
    margin-bottom: 15px;
}
.rpm-left-wrapper ul li{
    padding-left: 0px;
    margin-bottom: 5px;
}
.rpm-bottom-container{
    width: 100%;
    background: #5447FF;
    padding: 30px;
    margin-top: 20px;
    font-size: 16px;
}

@media (min-width: 320px) and (max-width: 767px) {
    .rpm-wrapper{
        padding: 20px;
    }
    .rpm-content-wrapper{
        flex-direction: column;
    }
    .rpm-left-wrapper h3{
        font-size: 18px;
        line-height: 1.2;
    }
    .rpm-left-wrapper ul li{
        font-size: 14px;
    }
    .rpm-bottom-container{
        padding: 20px;
            font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .rpm-left-wrapper h3{
        font-size: 20px;
        line-height: 1.4;
    }
}
/* Results Section */

.results-content {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.results-left {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.results-title {
    font-size: 38px;
    font-weight: 700;
    color: #5548FF;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.results-box {
    background: #F7F7F7;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 557px;
}

.results-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

/* .stat-item {
    flex: 1;
} */

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.stat-value {
    font-size: 38px;
    font-weight: 700;
    color: #141649;
    margin: 0;
    line-height: 1.2;
}

.stat-value.stat-highlight {
    color: #5548FF;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: #5f5d5d;
}

.results-description {
    font-size: 14px;
    line-height: 1.6;
    color: #1A1A1A;
    margin: 0;
}

.results-right {
    flex: 1;
    max-width: 691px;
    position: relative;
    z-index: -1;
    margin-left: -100px;
}

.results-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive for Results Section */
@media (min-width: 320px) and (max-width: 767px) {
    .results-title{
        font-size: 22px;
    }
    .results-content{
        flex-direction: column;
    }
    .results-box{
        width: 100%;
        padding: 20px;
    }
    .stat-label{
        font-size: 15px;
    }
    .stat-value{
        font-size: 17px;
    }
    .results-stats{
        gap: 15px;
        margin-bottom: 15px;
    }
    .stat-divider{
        height: 35px;
    }
    .results-right{
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .results-title{
        font-size: 22px;
    }
    .stat-label{
        font-size: 16px;
    }
    .stat-value{
        font-size: 20px;
    }
    .results-box{
        width: 409px;
    }
    .results-img{
    height: 350px;
    object-fit: cover;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
.results-right{
    height: 290px;
}
.results-content{
    height: 340px;
}
}
/* The Future Overview Section */
.future-overview-content::after{
    position: absolute;
    content: "";
    width: 1115px;
    height: 400px;
   background: linear-gradient(270deg, #121444 0%, #1B1E5A 100%);
    z-index: -1;
}
.future-overview-content {
    display: flex;
    align-items: center;
}

.future-overview-left {
    flex: 1;
    max-width: 600px;
    padding: 30px;
}

.future-overview-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.future-overview-text {
    font-size: 14px;
    line-height: 1.8;
    color: #FFFFFF;
    margin: 0;
}

.future-overview-right {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.future-overview-img {
    width: 100%;
    height: 640px;
    display: block;
}

/* Responsive for Future Overview Section */
@media (min-width: 320px) and (max-width: 767px) {
    .future-overview-left{
        padding: 20px;
    }
    .future-overview-content{
        flex-direction: column;
    }
    .future-overview-title{
        font-size: 22px;
    }
    .future-overview-img{
        height: auto;
    }
    .future-overview-content::after{
        height: 100%;
        width: 92%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .future-overview-title{
        font-size: 22px;
    }
    .future-overview-content::after{
        width: 720px;
        height: 535px;
    }
    .future-overview-img{
        height: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
.future-overview-content::after{
    height: 430px;
        width: 940px;
}
.future-overview-img{
    height: auto;
    
}
}