/* Case Study CSS file */

.bg-light-blue {
    background: #F2F5FA;
}

.text-orange {
    color: #FC6A03;
}

.project-overview,
.team-section,
.project-requirements,
.key-features,
.technology-stack,
.challenges-solutions {
    padding: 90px 0;
}

.page-hero {
    padding-top: 190px;
    padding-bottom: 90px;
    background-image: url('../media/icons/hero-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* .page-hero .hero-content {
    padding-left: 50px;
} */

.hero-main-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-main-wrapper .hero-content {
    width: 60%;
}

.hero-main-wrapper .hero-image {
    width: 40%;
}

.hero-image img {
    width: 100%;
    border: 2px solid #FC6A03;
    border-radius: 20px;
}

.page-hero .hero-content .badge {
    border-radius: 22686000px;
    border: 0.676px solid #FFD6A7;
    background: linear-gradient(90deg, #FFF7ED 0%, #FFEDD4 100%);
    padding: 10.668px 20.673px 10.671px 20.672px;
    color: #FC6A03;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
}

.page-hero .hero-content .badge img {
    padding-right: 6px;
}

.page-hero .hero-content .h1 {
    margin-bottom: 20px;
    margin-top: 20px;
    color: #101828;
    font-family: Inter;
    font-size: 62px;
    line-height: 1.2;
    font-weight: 400;
}

.page-hero .hero-content .h1 span {
    position: relative;
}

.page-hero .hero-content .h1 span::after {
    position: absolute;
    content: '';
    opacity: 0.2;
    background: #FC6A03;
    display: block;
    width: 87%;
    height: 27%;
    bottom: 10px;
    left: 0%;
}

.page-hero .hero-content p {
    color: #4A5565;
    font-family: Inter;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 53px;
}

.page-hero .hero-content .items {
    margin-top: 53px;
    display: flex;
    align-items: center;
    gap: 36px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.page-hero .hero-content .item {
    border-radius: 14px;
    border: 0.676px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;
    padding: 12px 20px;
    min-width: 200px;
}

.page-hero .hero-content .item-content span {
    color: #6A7282;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.page-hero .hero-content .item-content p {
    margin-bottom: 0px;
    color: #101828;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.team-section .section-title {
    color: #101828;
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 23px;
}


/* .team-section .section-title span{
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
} */

.section-subtitle {
    color: #4A5565;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    border-radius: 16px;
    border: 0.676px solid #E5E7EB;
    background: #FFF;
    padding: 32px;
}

.designation {
    color: #101828;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-top: 23px;
    margin-bottom: 4px;
}

.name {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
    margin-bottom: 12px;
}

.desc {
    color: #4A5565;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin: 0px;
}

.overview-wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.overview-content {
    flex: 1;
    max-width: 608px;
}

.overview-content .h2,
.requirements-wrap .left-content .h2,
.challenges-solutions .h2,
.key-features .h2,
.technology-stack .h2,
.outstanding-results .h2 {
    color: #101828;
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
    margin: 0px;
    position: relative;
    padding-left: 10px;
}

.overview-content .h2::before,
.requirements-wrap .left-content .h2::before {
    border-radius: 22686000px;
    background: linear-gradient(180deg, #FC6A03 0%, #FFB86A 100%);
    width: 4px;
    /* height: 62px; */
    height: 100%;
    display: inline-block;
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
}


/* .overview-content .h2 span{
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
} */

.overview-content p {
    margin: 0px;
    color: #4A5565;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.overview-content {
    width: 50%;
    max-width: 608px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.overview-info {
    width: 50%;
    max-width: 608px;
    border-radius: 24px;
    border: 1.352px solid #F3F4F6;
    background: #F2F5FA;
    padding: 34px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    gap: 16px;
}

.info-item {
    display: flex;
    gap: 10px;
    padding: 16px 15px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.info-item span {
    color: #4A5565;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.info-item span.bold {
    color: #101828;
    text-align: right;
}

.overview-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
}

.overview-lists .list {
    border-radius: 16.5px;
    border: 0.697px solid #E5E7EB;
    background: #F2F5FA;
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overview-lists .list .h3,
.overview-lists .list p {
    color: #101828;
    font-family: Inter;
    font-size: 16.5px;
    font-style: normal;
    font-weight: 400;
    margin: 0px;
}

.overview-lists .list p {
    color: #4A5565;
}

.requirements-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.requirements-wrap .left-content p {
    max-width: 650px;
    margin: 0px;
    padding-left: 10px;
    padding-top: 10px;
}

.requirements-wrap .left-content .highlight {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 10px;
}

.requirements-wrap .left-content p {
    color: #4A5565;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.requirements-content p {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
}


/* .challenges-solutions {
    padding-bottom: 90px;
} */

.challenges-solutions .top-content,
.key-features .top-content,
.technology-stack .top-content,
.outstanding-results .top-content {
    text-align: center;
}

.challenges-solutions .top-content .h2,
.key-features .h2,
.technology-stack .h2,
.outstanding-results .h2 {
    padding-left: 0px;
    padding-bottom: 5px;
}

.challenges-solutions .top-content p,
.key-features p,
.technology-stack p {
    color: #4A5565;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
    margin: 0px;
}

.challenges-solutions .cs-list,
.key-features .kf-list,
.technology-stack .ts-items,
.outstanding-results .or-items {
    padding: 64px 0px;
}

.challenges-solutions .cs-list .item {
    display: flex;
    border-radius: 16px;
    background: linear-gradient(90deg, #FFF4F4 0%, #F5FFF6 100%);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    padding: 30px 32px;
    margin-bottom: 32px;
    gap: 32px;
}

.challenges-solutions .cs-list .item:last-child {
    margin-bottom: unset;
}

.challenges-solutions .cs-list .item .box {
    flex: 1;
}

.challenges-solutions .cs-list .item .box.challenge {
    padding-right: 32px;
}

.challenges-solutions .cs-list .item .box.solution {
    padding-left: 34px;
    border-left: 2px solid #FC6A03;
}

.challenges-solutions .cs-list .item .label {
    display: flex;
    align-items: start;
    gap: 16px;
}

.challenges-solutions .label .content {
    max-width: 441px;
}

.challenges-solutions .label .content .highlight.red {
    color: #FB2C36;
}

.challenges-solutions .label .content .highlight {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.488px;
    text-transform: uppercase;
}

.challenges-solutions .label .content .h3 {
    color: #101828;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.439px;
    margin-bottom: 16px;
}

.challenges-solutions .label .content p {
    color: #4A5565;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
    margin-bottom: unset;
}

.challenges-solutions .btn-wrap a,
.key-features .btn-wrap a,
.technology-stack .btn-wrap a {
    margin: 0 auto;
}

.key-features .card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding-top: 20px;
}

.key-features .card {
    border-radius: 16px;
    border: 1.352px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.key-features .card.featured {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
}

.key-features .card.featured img {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border-top-right-radius: 0px;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.key-features .card.featured .card-image img {
    width: 100%;
    max-width: 500px;
}

.key-features .card.featured .card-content {
    padding: 40px 35px;
    max-width: 571px;
}

.key-features .card.featured .card-content::after {
    margin-top: 98px;
}

.key-features .card-content .title,
.key-features .card-content p,
.technology-stack .ts-items .title,
.outstanding-results .or-items .title {
    padding-top: 15px;
    margin: 0px;
    color: #101828;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
}

.key-features .card-content p {
    padding-top: 8px;
    color: #4A5565;
    text-align: left;
}

.key-features .card img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    max-width: 100%;
}

.key-features .card-list .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 22px 30px;
    height: 100%;
}

.key-features .card-content::after {
    content: "";
    display: block;
    margin-top: 48px;
    border-radius: 22686000px;
    background: linear-gradient(180deg, #FC6A03 0%, rgba(0, 0, 0, 0.00) 100%);
    width: 63.997px;
    height: 3.993px;
}

.technology-stack .ts-items {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(4, 1fr);
}

.technology-stack .ts-items .item {
    border-radius: 14px;
    background: #F2F5FA;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    padding: 30px 10px;
    text-align: center;
}

.outstanding-results {
    padding: 30px 0;
}

.outstanding-results .or-items {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.outstanding-results .or-items .item {
    border-radius: 24px;
    border: 1.352px solid #F3F4F6;
    background: #F2F5FA;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    padding: 32px;
}

.outstanding-results .item .count {
    color: #101828;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.352px;
    padding-top: 25px;
}

.outstanding-results .item .count .dash {}

.outstanding-results .item .count .highlight {
    color: #FC6A03;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.07px;
}

.outstanding-results .or-items .title {
    padding-top: 20px;
}

.outstanding-results .or-items p {
    color: #6A7282;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
    padding-top: 3px;
    margin: 0px;
}

.cta {
    border-radius: 30px;
    background: linear-gradient(135deg, #000 0%, #343434 50%, #000 100%);
    margin-bottom: 90px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 96px 80px;
    text-align: center;
    position: relative;
}

.cta .cta-content .badge {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
    padding: 8.676px 20.674px 8.67px 20.672px;
    border-radius: 22686000px;
    border: 0.676px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    margin-bottom: 30px;
}

.cta .cta-content .badge img {
    padding-right: 9px;
}

.cta .cta-content .h2 {
    margin-top: 26px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.264px;
}

.cta .cta-content p {
    margin-top: 20px;
    margin-bottom: 50px;
    color: #D1D5DC;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.449px;
}

.cta .cta-content .buttons a {
    margin: 0 auto;
    display: inline-block;
}

.cta .cta-content .buttons a.secondary {
    margin-left: 16px;
    border: 0.676px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
}

.cta .cta-content .stats {
    margin-top: 40px;
    margin-bottom: unset;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding-left: unset;
}

.cta .cta-content .stats li {
    color: #99A1AF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.312px;
}

.cta .cta-content .h2 span {
    position: relative;
    z-index: 1;
}

.cta .cta-content .h2 span::after {
    content: '';
    opacity: 0.3;
    background: #FC6A03;
    display: block;
    position: absolute;
    bottom: 10%;
    left: 0%;
    z-index: -1;
    width: 88%;
    height: 22%;
}

.cta .glow-block.left {
    border-radius: 22686000px;
    opacity: 0.4822;
    background: #FC6A03;
    filter: blur(64px);
    width: 287.996px;
    height: 287.996px;
    position: absolute;
    top: 80px;
    left: 80px;
}

.cta .glow-block.right {
    position: absolute;
    right: 80px;
    bottom: 80px;
    border-radius: 22686000px;
    opacity: 0.1237;
    background: #FF8904;
    filter: blur(64px);
    width: 383.991px;
    height: 383.991px;
}


/* ---------------------------------------------------*/


/* ----------------- Responsive CSS ------------------*/


/* ---------------------------------------------------*/

@media(min-width:576px) {}

@media(min-width:768px) {}

@media(min-width:992px) {}

@media(min-width:1200px) {}

@media(min-width:1400px) {}

@media(min-width:1600px) {}

@media(max-width:479px) {}

@media(max-width:575px) {
    .overview-lists {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .key-features .card-list {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .overview-content,
    .overview-info {
        width: 100%;
    }
    .challenges-solutions .cs-list .item {
        flex-direction: column;
    }
    .challenges-solutions .cs-list .item .box.solution {
        padding-left: unset;
        border-top: 2px solid #FC6A03;
        border-left: unset;
    }
    .challenges-solutions .cs-list .item .box.challenge {
        padding-right: unset;
    }
    .cta .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .cta .cta-content .buttons a.secondary {
        margin-left: auto;
    }
}

@media(max-width:991px) {
    .overview-lists {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-main-wrapper {
        flex-direction: column;
    }
    .hero-main-wrapper .hero-content,
    .hero-main-wrapper .hero-image {
        width: 100%;
    }
    .hero-main-wrapper .hero-content {
        text-align: center;
    }
    .hero-main-wrapper .hero-content .main-btn {
        margin: 35px auto;
    }
    .page-hero .hero-content p {
        margin-bottom: unset;
    }
    .page-hero .hero-content .items {
        margin-top: unset;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media(max-width:1024px) {}

@media(max-width:1199px) {}

@media(max-width:1399px) {}

@media screen and (max-width: 1799px) and (min-width: 1600px) {}

@media screen and (max-width: 1599px) and (min-width: 1400px) {
    .page-hero .hero-content .h1 {
        font-size: 48px;
    }
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .page-hero .hero-content .h1 {
        font-size: 44px;
    }
    .page-hero .hero-content p {
        font-size: 18px;
        margin-bottom: 45px;
    }
    .page-hero .hero-content .items {
        margin-top: 45px;
        gap: 20px;
    }
    .page-hero .hero-content .item {
        padding: 10px 15px;
        min-width: 180px;
    }
    .overview-content .h2,
    .requirements-wrap .left-content .h2,
    .challenges-solutions .h2,
    .key-features .h2,
    .technology-stack .h2,
    .outstanding-results .h2 {
        font-size: 52px;
    }
    .team-section .section-title {
        font-size: 52px;
    }
    .outstanding-results .item .count {
        font-size: 40px;
    }
    .outstanding-results .or-items .item {
        padding: 26px;
    }
    .key-features .card-list {
        gap: 20px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .page-hero .hero-content .h1 {
        font-size: 40px;
    }
    .page-hero {
        padding-top: 160px;
        padding-bottom: 40px;
    }
    .hero-main-wrapper {
        gap: 20px;
    }
    .page-hero .hero-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .page-hero .hero-content .items {
        margin-top: 45px;
        gap: 20px;
    }
    .page-hero .hero-content .item {
        padding: 10px 15px;
        min-width: 180px;
    }
    .overview-content .h2,
    .requirements-wrap .left-content .h2,
    .challenges-solutions .h2,
    .key-features .h2,
    .technology-stack .h2,
    .outstanding-results .h2 {
        font-size: 42px;
    }
    .overview-lists .list {
        padding: 26px;
    }
    .team-card {
        padding: 26px;
    }
    .team-section .section-title {
        font-size: 42px;
    }
    .challenges-solutions .cs-list .item {
        padding: 26px;
    }
    .technology-stack .ts-items {
        gap: 30px;
    }
    .outstanding-results .item .count {
        font-size: 30px;
    }
    .outstanding-results .or-items {
        gap: 20px;
    }
    .outstanding-results .or-items .item {
        border-radius: 20px;
        padding: 20px;
    }
    .cta .cta-content .h2 {
        font-size: 50px;
    }
    .cta {
        padding: 80px 60px;
    }
    .key-features .card-list {
        gap: 20px;
    }
    .key-features .card-content::after {
        margin-top: 30px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .page-hero .hero-content .h1 {
        font-size: 40px;
    }
    .page-hero .hero-content p {
        font-size: 18px;
    }
    .page-hero {
        padding-top: 140px;
        padding-bottom: 40px;
    }
    .hero-main-wrapper {
        gap: 40px;
    }
    .page-hero .hero-content .item {
        text-align: left;
    }
    .overview-content .h2,
    .requirements-wrap .left-content .h2,
    .challenges-solutions .h2,
    .key-features .h2,
    .technology-stack .h2,
    .outstanding-results .h2 {
        font-size: 42px;
    }
    .overview-wrap {
        gap: 15px;
    }
    .overview-content {
        gap: 18px;
    }
    .overview-lists .list,
    .team-card,
    .overview-info,
    .outstanding-results .or-items .item {
        padding: 26px;
    }
    .challenges-solutions .cs-list .item {
        padding: 24px;
        gap: 15px;
    }
    .challenges-solutions .cs-list .item .box.challenge {
        padding-right: 8px;
    }
    .challenges-solutions .cs-list .item .box.solution {
        padding-left: 24px;
    }
    .key-features .card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding-top: 10px;
    }
    .team-section .section-title {
        font-size: 42px;
    }
    .technology-stack .ts-items {
        gap: 20px;
    }
    .outstanding-results .item .count {
        font-size: 30px;
    }
    .cta .cta-content .h2 {
        font-size: 40px;
        margin-top: 0px;
    }
    .requirements-wrap .left-content {
        max-width: 500px;
    }
    .requirements-wrap .left-content p {
        font-size: 17px;
    }
    .key-features .card.featured .card-content::after {
        margin-top: 48px;
    }
    .outstanding-results .or-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta .glow-block.left {
        width: 250px;
        height: 200px;
        top: 50px;
        left: 0px;
    }
    .cta .glow-block.right {
        width: 250px;
        height: 200px;
        right: 0px;
        bottom: 0px;
    }
}

@media screen and (max-width: 767px) and (min-width: 576px) {
    .page-hero .hero-content .h1 {
        font-size: 36px;
    }
    .page-hero .hero-content p {
        font-size: 17px;
    }
    .page-hero .hero-content .items {
        gap: 20px;
        row-gap: 20px;
    }
    .page-hero .hero-content .badge {
        font-size: 12px;
    }
    .page-hero {
        padding-bottom: 40px;
        padding-top: 140px;
    }
    .page-hero .hero-content .h1 span::after {
        height: 13%;
        bottom: 7px;
    }
    .page-hero .hero-content .items {
        gap: 20px;
        row-gap: 20px;
    }
    .page-hero .hero-content .item {
        width: unset;
        text-align: left;
        gap: 10px;
        padding: 8px 12px;
        min-width: 160px;
    }
    .page-hero .hero-content .item-content span {
        font-size: 15px;
    }
    .page-hero .hero-content .item-content p {
        font-size: 15px;
        line-height: 20px;
    }
    .overview-content .h2,
    .requirements-wrap .left-content .h2,
    .challenges-solutions .h2,
    .key-features .h2,
    .technology-stack .h2,
    .outstanding-results .h2 {
        font-size: 32px;
    }
    .overview-lists .list,
    .team-card,
    .overview-info,
    .outstanding-results .or-items .item {
        padding: 24px;
    }
    .project-overview .overview-wrap {
        display: block;
    }
    .project-overview .overview-wrap .overview-content {
        margin-bottom: 30px;
    }
    .project-overview .overview-content .h2::before,
    .requirements-wrap .left-content .h2::before {
        height: 42px;
    }
    .project-overview .overview-lists {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-section .section-title {
        font-size: 32px;
    }
    .team-grid {
        gap: 15px;
    }
    .project-requirements .requirements-wrap {
        display: block;
        margin-bottom: 30px;
    }
    .project-requirements .right-content {
        margin-top: 20px;
    }
    .requirements-wrap .left-content p {
        font-size: 17px;
    }
    .challenges-solutions {
        padding-bottom: 60px;
    }
    /* .challenges-solutions .cs-list .item {
        display: block;
    }
    .challenges-solutions .cs-list .item .box.solution {
        padding-left: 0px;
        padding-top: 20px;
        border-left: unset;
    } */
    .challenges-solutions .cs-list .item {
        padding: 24px;
    }
    .challenges-solutions .cs-list .item {
        gap: 25px;
    }
    .challenges-solutions .cs-list .item .box.solution {
        padding-top: 25px;
    }
    .key-features .card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .key-features .card.featured .card-content {
        padding: 24px 26px;
    }
    .key-features .card-list .card-content {
        gap: 5px;
        padding: 18px 20px;
    }
    .key-features .card.featured .card-content::after {
        margin-top: 30px;
    }
    .key-features .card-content::after {
        margin-top: 25px;
    }
    .outstanding-results .item .count {
        font-size: 30px;
    }
    .outstanding-results .or-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta .cta-content .h2 {
        font-size: 40px;
        margin-top: 0px;
    }
    .requirements-wrap .left-content {
        max-width: 500px;
    }
    .key-features .card.featured .card-content::after {
        margin-top: 48px;
    }
    .technology-stack .ts-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .technology-stack .ts-items .item {
        padding: 20px 8px;
    }
    .cta {
        padding: 60px 50px;
    }
    .cta .glow-block.left {
        width: 150px;
        height: 150px;
        top: 50px;
        left: 0px;
    }
    .cta .glow-block.right {
        width: 150px;
        height: 200px;
        right: 0px;
        bottom: 0px;
    }
}

@media screen and (max-width: 575px) and (min-width: 480px) {
    .page-hero .hero-content .h1 {
        font-size: 34px;
    }
    .page-hero .hero-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .main-btn {
        padding: 10px 20px;
    }
    .page-hero .hero-content .items {
        gap: 20px;
        row-gap: 20px;
    }
    .page-hero .hero-content .item {
        width: unset;
        text-align: left;
        gap: 10px;
        padding: 8px 12px;
        min-width: 160px;
    }
    .page-hero .hero-content .item-content span {
        font-size: 15px;
    }
    .page-hero .hero-content .item-content p {
        font-size: 15px;
        line-height: 20px;
    }
    .page-hero .hero-content .badge {
        font-size: 12px;
        padding: 8px 20px 8px 20px;
    }
    .page-hero {
        padding-bottom: 40px;
        padding-top: 140px;
    }
    .project-overview,
    .team-section,
    .project-requirements,
    .key-features,
    .technology-stack {
        padding: 60px 0;
    }
    .overview-content .h2,
    .requirements-wrap .left-content .h2,
    .challenges-solutions .h2,
    .key-features .h2,
    .technology-stack .h2,
    .outstanding-results .h2 {
        font-size: 32px;
    }
    .overview-lists .list,
    .team-card,
    .overview-info,
    .outstanding-results .or-items .item {
        padding: 24px;
    }
    .project-overview .overview-wrap {
        display: block;
    }
    .project-overview .overview-lists .list {
        text-align: center;
    }
    .project-overview .overview-wrap .overview-content {
        margin-bottom: 30px;
    }
    .project-overview .overview-content .h2::before,
    .requirements-wrap .left-content .h2::before {
        height: 42px;
    }
    .project-overview .overview-lists {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-section .section-title {
        font-size: 32px;
    }
    .team-section .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-section .team-card {
        text-align: center;
    }
    .project-requirements .requirements-wrap {
        display: block;
        margin-bottom: 30px;
    }
    .project-requirements .right-content {
        margin-top: 20px;
    }
    .project-requirements .right-content a {
        margin: 0 auto;
    }
    .challenges-solutions {
        padding-bottom: 60px;
    }
    .challenges-solutions .cs-list .item .box.solution {
        padding-left: 0px;
        padding-top: 20px;
        border-left: unset;
    }
    .challenges-solutions .cs-list .item {
        gap: 24px;
    }
    .requirements-wrap .left-content .h2 {
        line-height: 1.8;
    }
    .outstanding-results .item .count {
        font-size: 30px;
    }
    .outstanding-results .or-items {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
    .requirements-wrap .left-content {
        max-width: 500px;
    }
    .key-features .card.featured {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .key-features .card.featured img {
        border-bottom-left-radius: unset;
        border-top-right-radius: 16px;
    }
    .key-features .card.featured .card-content {
        padding: 20px 35px;
    }
    .key-features .card-list {
        gap: 20px;
        flex-direction: column;
    }
    .key-features .card.featured .card-content::after {
        margin-top: 48px;
    }
    .technology-stack .ts-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .cta {
        padding: 40px 20px;
    }
    .cta .cta-content .h2 {
        font-size: 35px;
        margin-top: 0px;
    }
    .cta .cta-content p {
        margin-bottom: 40px;
    }
    .cta .cta-content .stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .cta .glow-block.left {
        width: 150px;
        height: 150px;
        top: 50px;
        left: 0px;
    }
    .cta .glow-block.right {
        width: 150px;
        height: 200px;
        right: 0px;
        bottom: 0px;
    }
    .challenges-solutions .cs-list,
    .key-features .kf-list,
    .technology-stack .ts-items,
    .outstanding-results .or-items {
        padding: 30px 0px;
    }
}

@media screen and (max-width: 479px) and (min-width: 380px) {
    .page-hero .hero-content .h1 {
        font-size: 32px;
    }
    .page-hero .hero-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .main-btn {
        padding: 10px 20px;
    }
    .page-hero .hero-content .items {
        gap: 20px;
        row-gap: 20px;
    }
    .page-hero .hero-content .item {
        width: unset;
        text-align: left;
        gap: 10px;
        padding: 8px 12px;
        min-width: 160px;
    }
    .page-hero .hero-content .item-content span {
        font-size: 15px;
    }
    .page-hero .hero-content .item-content p {
        font-size: 15px;
        line-height: 20px;
    }
    .page-hero .hero-content .badge {
        font-size: 12px;
        padding: 8px 20px 8px 20px;
    }
    .page-hero {
        padding-bottom: 40px;
        padding-top: 140px;
    }
    .project-overview,
    .team-section,
    .project-requirements,
    .key-features,
    .technology-stack {
        padding: 60px 0;
    }
    .overview-content .h2,
    .requirements-wrap .left-content .h2,
    .challenges-solutions .h2,
    .key-features .h2,
    .technology-stack .h2,
    .outstanding-results .h2 {
        font-size: 32px;
    }
    .project-overview .overview-wrap {
        display: block;
    }
    .project-overview .overview-lists .list {
        text-align: center;
    }
    .project-overview .overview-wrap .overview-content {
        margin-bottom: 30px;
    }
    .project-overview .overview-content .h2::before,
    .requirements-wrap .left-content .h2::before {
        height: 42px;
    }
    .project-overview .overview-lists {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-section .section-title {
        font-size: 32px;
    }
    .team-section .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-section .team-card {
        text-align: center;
    }
    .project-requirements .requirements-wrap {
        display: block;
        margin-bottom: 30px;
    }
    .project-requirements .right-content {
        margin-top: 20px;
    }
    .project-requirements .right-content a {
        margin: 0 auto;
    }
    .overview-info {
        padding: 20px;
    }
    .challenges-solutions {
        padding-bottom: 60px;
    }
    .challenges-solutions .cs-list .item .box.solution {
        padding-left: 0px;
        padding-top: 20px;
        border-left: unset;
    }
    .challenges-solutions .cs-list .item {
        padding: 24px;
        gap: 20px;
    }
    .outstanding-results .item .count {
        font-size: 30px;
    }
    .outstanding-results .or-items {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
    .requirements-wrap .left-content .h2 {
        line-height: 1.8;
    }
    .requirements-wrap .left-content {
        max-width: 500px;
    }
    .key-features .card.featured {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .key-features .card.featured img {
        border-bottom-left-radius: unset;
        border-top-right-radius: 16px;
    }
    .key-features .card.featured .card-content {
        padding: 20px 35px;
    }
    .key-features .card-list {
        gap: 20px;
        flex-direction: column;
    }
    .key-features .card.featured .card-content::after {
        margin-top: 48px;
    }
    .technology-stack .ts-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .cta {
        padding: 40px 20px;
    }
    .cta .cta-content .h2 {
        font-size: 35px;
        margin-top: 0px;
    }
    .cta .cta-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .cta .cta-content .stats {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .cta .glow-block.left {
        width: 150px;
        height: 150px;
        top: 50px;
        left: 0px;
    }
    .cta .glow-block.right {
        width: 150px;
        height: 200px;
        right: 0px;
        bottom: 0px;
    }
    .challenges-solutions .cs-list,
    .key-features .kf-list,
    .technology-stack .ts-items,
    .outstanding-results .or-items {
        padding: 30px 0px;
    }
}

@media screen and (max-width: 379px) {
    .page-hero .hero-content .h1 {
        font-size: 28px;
    }
    .page-hero .hero-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .main-btn {
        padding: 10px 20px;
    }
    .page-hero .hero-content .items {
        gap: 20px;
        row-gap: 20px;
    }
    .page-hero .hero-content .item {
        width: 100%;
        text-align: left;
        gap: 10px;
        padding: 8px 12px;
        min-width: 160px;
    }
    .page-hero .hero-content .item-content span {
        font-size: 15px;
    }
    .page-hero .hero-content .item-content p {
        font-size: 15px;
        line-height: 20px;
    }
    .page-hero .hero-content .badge {
        font-size: 12px;
        padding: 8px 20px 8px 20px;
    }
    .page-hero {
        padding-bottom: 40px;
        padding-top: 140px;
    }
    .project-overview,
    .team-section,
    .project-requirements,
    .key-features,
    .technology-stack {
        padding: 60px 0;
    }
    .overview-content .h2,
    .requirements-wrap .left-content .h2,
    .challenges-solutions .h2,
    .key-features .h2,
    .technology-stack .h2,
    .outstanding-results .h2 {
        font-size: 32px;
    }
    .project-overview .overview-wrap {
        display: block;
    }
    .overview-content p {
        font-size: 15px;
    }
    .project-overview .overview-lists .list {
        text-align: center;
    }
    .project-overview .overview-wrap .overview-content {
        margin-bottom: 30px;
    }
    .project-overview .overview-content .h2::before,
    .requirements-wrap .left-content .h2::before {
        height: 42px;
    }
    .project-overview .overview-lists {
        grid-template-columns: repeat(1, 1fr);
    }
    .overview-info {
        border-radius: 20px;
        padding: 10px;
    }
    .info-item {
        padding: 12px 10px;
    }
    .info-item span {
        font-size: 14px;
    }
    .team-section .section-title {
        font-size: 32px;
    }
    .team-section .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-section .team-card {
        text-align: center;
    }
    .project-requirements .requirements-wrap {
        display: block;
        margin-bottom: 30px;
    }
    .project-requirements .right-content {
        margin-top: 20px;
    }
    .project-requirements .right-content a {
        margin: 0 auto;
    }
    .challenges-solutions .cs-list .item {
        padding: 20px;
        gap: 20px;
    }
    .challenges-solutions {
        padding-bottom: 60px;
    }
    .challenges-solutions .cs-list .item .box.solution {
        padding-left: 0px;
        padding-top: 20px;
        border-left: unset;
    }
    .outstanding-results .item .count {
        font-size: 30px;
    }
    .outstanding-results .or-items {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
    .requirements-wrap .left-content {
        max-width: 500px;
    }
    .requirements-wrap .left-content p {
        font-size: 16px;
    }
    .key-features .card.featured {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .key-features .card.featured img {
        border-bottom-left-radius: unset;
        border-top-right-radius: 16px;
    }
    .key-features .card.featured .card-content {
        padding: 20px 35px;
    }
    .key-features .card-list {
        gap: 20px;
        flex-direction: column;
    }
    .technology-stack .ts-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .technology-stack .ts-items .item {
        padding: 20px 10px;
    }
    .cta {
        padding: 40px 20px;
    }
    .cta .cta-content .h2 {
        font-size: 35px;
        margin-top: 0px;
    }
    .cta .cta-content p {
        margin-bottom: 40px;
    }
    .cta .cta-content .stats {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .cta .glow-block.left {
        width: 150px;
        height: 150px;
        top: 50px;
        left: 0px;
    }
    .cta .glow-block.right {
        width: 150px;
        height: 200px;
        right: 0px;
        bottom: 0px;
    }
    .challenges-solutions .cs-list,
    .key-features .kf-list,
    .technology-stack .ts-items,
    .outstanding-results .or-items {
        padding: 30px 0px;
    }
    .cta .cta-content .badge {
        font-size: 12px;
    }
    .cta .cta-content p {
        font-size: 15px;
    }
    .key-features .card-content::after,
    .key-features .card.featured .card-content::after {
        margin-top: 25px;
    }
}