:root {
    --primary-orange: #FD933D;
    --text-dark: #000000;
    --text-light: #535252;
    --white: #FFFFFF;
    --secondary-orange: #FF7F32;
    --tertiory-orange: #FFF3EA;
}


.about-hero-section {
    position: relative;
    padding-top: 180px;

    z-index: 1;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-hero-bg .mobile-bg {
    display: none;
}

.hero-content-wrapper {
    width: 90% !important;
    margin: 0 auto;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 55% calc(45% - 40px);
    gap: 40px;
    align-items: start;
    position: relative;
}

.about-hero-title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.about-hero-title h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 85px;
    color: #1A1A1A;
    margin-bottom: 0;
}

.about-hero-title h1 span {
    /* background: linear-gradient(90deg, #FD933D 38.46%, #BA7FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
}

.about-hero-badge {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
    margin-right: 10%;
}

.about-hero-badge img {
    width: 140px;
    animation: rotate-continuous 20s linear infinite;
}

@keyframes rotate-continuous {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-hero-desc {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: center;
}

.about-hero-desc p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 30px;
}

.btn-gradient-solid {
    display: inline-block;
    /* background: linear-gradient(90deg, #FD933D 38.46%, #A176E3 100%); */
    background: var(--main-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.btn-gradient-solid:hover {
    /* box-shadow: 0 10px 20px rgba(186, 127, 255, 0.3); */
    color: #fff;
    transform: translateY(-2px);
}

.about-hero-image {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-top: 20px;
}

.about-hero-image img {
    width: 100%;
    border-radius: 24px;
    border: 3px solid #FD933D;
    display: block;
}


.about-marquee-section {
    padding: 40px 0;
    overflow: hidden;
    background: transparent;
    display: flex;
    white-space: nowrap;
}

.marquee-content-s {
    display: flex;
    align-items: center;
    animation: marquee-scroll 20s linear infinite;
    flex-shrink: 0;
}

.marquee-content-s span {
    font-size: 100px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-orange);
    display: flex;
    align-items: baseline;
    padding-right: 0;
}

.marquee-content-s span .dot {
    width: 20px;
    height: 20px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: inline-block;
    margin: 0 40px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.our-journey-slider-section {
    padding: 80px 0;
    background: var(--tertiory-orange);
    overflow: hidden;
 
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.journey-wrapper {
    width: 80% !important;
    margin: 0 auto;
}

.journey-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.journey-title-area {
    max-width: 600px;
}

.journey-title-area h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.journey-title-area h2 .text-orange {
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
}


.journey-title-area p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.journey-controls {
    display: flex;
    gap: 15px;
}

.journey-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFE5D4;
    background: white;
    color: var(--primary-orange);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.journey-controls button:hover:not(:disabled) {
    border-color: var(--primary-orange);
    background: #fff;
}

.journey-controls button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.journey-carousel-wrapper {
    width: calc(100% + (100vw - 100%) / 2);
}

.journey-slider-container {
    position: relative;
    padding-bottom: 20px;
    overflow: hidden;
    z-index: 1;
}

.journey-track-line {
    position: absolute;
    top: 105px;
    width: 200%;
    height: 1px;
    background: #A3A3A3;
    z-index: 0;
}

.journey-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.journey-slide {
    flex: 0 0 calc((100% / 3));
    padding-right: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.journey-node {
    position: relative;
    height: 120px;
}

.j-dot {
    width: 14px;
    height: 14px;
    background: var(--primary-orange);
    border-radius: 50%;
    position: absolute;
    top: 98px;
    z-index: 2;
}

.j-icon {
    position: absolute;
    bottom: 35px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.j-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary-orange);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.j-icon-circle img {
    width: 24px;
}

.j-logo {
    position: absolute;
    bottom: 35px;
    left: 0;
    height: 35px;
    z-index: 2;
}

.j-logo {
    position: absolute;
    bottom: 35px;
    height: 35px;
    z-index: 2;
}

.journey-card {
    background: #fff;
    border: 0.5px solid #FD933D;
    border-radius: 30px;
    padding: 50px 30px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    clip-path: polygon(45px 0%, 100% 0, 100% 100%, 0 100%, 0 45px);
    cursor: pointer;
    margin-top: 20px;
    flex-grow: 1;
}

.journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    border-bottom-right-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journey-card:hover,
.journey-card.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.journey-card:hover h4,
.journey-card:hover p,
.journey-card:hover .year,
.journey-card.active h4,
.journey-card.active p,
.journey-card.active .year {
    color: #fff;
}

.journey-card:hover::before,
.journey-card.active::before {
    background: #FDEEE3;
}

.journey-card .year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.journey-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.journey-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.4s ease;
}

.mobile-controls {
    display: none;
    justify-content: center;
    margin-top: 15px;
}


.about-company-section {
    padding: 45px 0;
}

.company-wrapper {
    width: 95% !important;
    margin: 0 auto;
}

.company-header {
    text-align: center;
    margin-bottom: 60px;
}

.company-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.company-header h2 .text-orange {
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
}

.company-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.company-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-images {
    width: 100%;
}

.main-company-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.company-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 15px;
 
}

.mv-card {
    border: 1px solid var(--primary-orange);
    border-radius: 20px;
    padding: 40px 40px 30px;
    background: #fff;
    position: relative;
}

.mv-icon {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px #fff;
    z-index: 2;
}

.mv-icon i {
    font-size: 24px;
    color: white;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.mv-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}



.next-project-section {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}


.project-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.project-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: right center;
}


.project-bg-desk {
    display: block;
}

.project-bg-mob {
    display: none;
}

.project-wrapper {
    width: 80% !important;
    margin: 0 auto;
}

.project-content-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-text-col {
    width: 45%;
    z-index: 2;
}

.project-text-col h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-text-col h2 .text-purple {
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
}

.project-text-col p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 35px;
}

.project-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-orange-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--main-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.btn-orange-solid:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}

.chat-with-us-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-with-us-action img {
    width: 40px;
    height: 40px;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-info span {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.chat-info a {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
}

.project-img-col {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.next-project-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.next-project-img-mobile {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.project-actions {
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .marquee-content-s span {
        -webkit-text-stroke: .4px var(--primary-orange);
    }

    .journey-carousel-wrapper {
        width: 100%;
    }

    .next-project-section {
        margin-top: 0;
    }

    .next-project-section {
        padding: 0;
    }

    .company-header {
        margin-bottom: 35px;
    }

    .company-cards {
        width: 90%;
        margin: auto;
    }

    .company-header br {
        display: none;
    }

    .company-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-header h2 {
        font-size: 32px;
    }

    .mv-card {
        padding: 40px 20px 30px;
    }

    .company-images {
        margin-bottom: 20px;
    }

    .journey-wrapper {
        width: 95% !important;
    }

    .about-hero-title h1 {
        font-size: 25px;
        line-height: 40px;
    }

    .hero-content-wrapper {
        width: 95% !important;
    }

    .about-hero-section {
        padding-top: 130px;
    }

    .about-hero-bg .desktop-bg {
        display: none;
    }

    .about-hero-bg .mobile-bg {
        display: block;
    }

    .about-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-hero-title h1 {
        font-size: 25px;
        padding-right: 30px;
        
    }

    .about-hero-badge {
        margin-right: 0;
    }

    .about-hero-badge {
        position: absolute;
        top: 0;
        right: 0;
    }

    .about-hero-badge img {
        width: 70px;
    }

    .about-hero-desc {
        padding-left: 0;
        padding-top: 0;
        margin-top: 5px;
    }

    .about-hero-desc p {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 25px;
    }

    .btn-gradient-solid {
        padding: 12px 25px;
        font-size: 14px;
    }

    .project-content-grid {
        flex-direction: column;
        gap: 15px;
    }

    .project-text-col,
    .project-img-col {
        width: 100%;
    }

    .project-text-col h2 {
        font-size: 22px;
    }

    .project-text-col p br {
        display: none;
    }

    .project-actions {
        gap: 20px;
        padding-bottom: 0;
        justify-content: space-between;
    }

    .project-bg-img {
        object-fit: fill;
    }

    .project-wrapper {
        width: 92% !important;
    }

    .btn-orange-solid {
        padding: 10px 20px;
        font-size: 14px;
    }

  
    .project-bg-desk {
        display: none;
    }

    .project-bg-mob {
        display: block;
    }

    .about-hero-image {
        margin-top: 10px;
    }

    .about-marquee-section {
        padding: 30px 0;
    }

    .marquee-content-s span {
        font-size: 40px;
    }

    .marquee-content-s span .dot {
        width: 12px;
        height: 12px;
        margin: 0 20px;
    }

    .journey-slide {
        flex: 0 0 100%;
        padding-right: 0;
    }

    .desktop-controls {
        display: none;
    }

    .mobile-controls {
        display: flex;
    }

    .journey-top-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .journey-title-area h2 {
        font-size: 32px;
    }

    .journey-title-area p {
        margin-bottom: 0;
    }

    .our-journey-slider-section {
        padding: 40px 0;
    }
}


@media (min-width: 769px) and (max-width: 990px) {
    .project-actions{
        justify-content: space-between;
    }

    .company-cards,
    .project-wrapper {
        width: 90% !important;
        margin: auto;
    }

    .company-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-hero-title h1 {
        font-size: 42px;
        padding-right: 120px;
        line-height: 60px;
    }

    .about-hero-badge {
        position: absolute;
        top: 0;
        right: 0;
    }

    .about-hero-desc {
        padding-left: 0;
        padding-top: 0;
    }

    .marquee-content-s span {
        font-size: 60px;
    }

    .marquee-content-s span .dot {
        width: 16px;
        height: 16px;
        margin: 0 30px;
    }

    .journey-slide {
        flex: 0 0 50%;
    }

    .project-content-grid {
        flex-direction: column;
        gap: 40px;
    }

    .project-text-col,
    .project-img-col {
        width: 100%;
    }
}

@media (min-width: 991px) and (max-width: 1400px) {
    .btn-orange-solid{
        padding: 14px 25px
    }
     .project-text-col br{
        display: none;
     }
    .about-hero-grid {
        grid-template-columns: 50% 50%;
        gap: 30px;
    }

    .about-hero-title h1 {
        font-size: 46px;
        line-height: 60px;
    }

    .about-hero-badge img {
        width: 110px;
    }

    .mv-card {
        padding: 20px 20px 15px;
    }

    .mv-card p {
        font-size: 12px;
    }

    .mv-card h3 {
        font-size: 20px;
    }

    .company-header p,
    .journey-title-area p {
        font-size: 14px;
    }

    .company-header h2,
    .journey-title-area h2 {
        font-size: 32px;
    }

    .journey-card p {
        font-size: 13px;
    }

    .about-hero-desc p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .marquee-content-s span {
        font-size: 70px;
    }
}

@media (min-width: 1401px) {
    .hero-content-wrapper {
        width: 95% !important;
    }

    .about-hero-title h1 {
        font-size: 72px;
    }
}