
/* ==========================
   :ROOT VARIABLES
========================== */
:root {
    --Primary-Color: #008BD1;
    --Secondary-Color: #8CC63F;
    --Radial: radial-gradient(40.25% 106.25% at 50.26% 50%, #008E2B 4.81%, #8CC63F 100%);
    --black-1: #010205;
    --white-100: #FFF;
    --accent-color: #302A27;
    --border-color: #B2CFD1;
    --Secondary-Black: #131313;
    --Primary-warmth: #FFFEFD;
    --Body-font-Color: #5A5A59;
    --black: #000;
    --Dark: #141B34;
    --box-bg: rgba(167, 178, 204, 0.17);
      --color-primary: #8cc63f;
  --color-secondary: #008e2b;
  --color-dark-bg: #141b34;
  --color-text-light: #ffffff;
  --color-text-dark: #010205;
  --color-text-gray: #5a5a59;
  --font-main: 'Outfit', sans-serif;
  --font-accent: 'Plus Jakarta Sans', sans-serif;
  --left-border: radial-gradient(40.25% 106.25% at 50.26% 50%, #008E2B 4.81%, #8CC63F 100%);

}
button {
  cursor: pointer;
}

/* ==========================
   NAV ACTIVE LINK
========================== */
.nav-link-active {
    border-radius: 58px;
    background: var(--Radial);
}

.bg-radial {
    color: white;
    background: var(--Radial) !important;
}

.text-radial {
    background: var(--Radial);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-radial-normal {
    background: var(--Radial, radial-gradient(40.25% 106.25% at 50.26% 50%, #008E2B 4.81%, #8CC63F 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-radial {
    border: 2px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(white, white), var(--Radial);
    background-origin: border-box;
    background-clip: padding-box, border-box;

}

.secondary {
    background: var(--Secondary-Color);
    background-color: var(--Secondary-Color);
}

.custom-border-1 {
    border: 1px solid var(--border-color);
}

.blog-cat-bg {
    background-color: rgba(0, 82, 181, 0.15) !important;
}

/* ==========================
   HERO SECTION
========================== */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 700px;
    gap: 2rem;
    padding: 5rem 1rem;
    background: url('/images/hero/hero-layer.png') center/cover no-repeat, lightgray;
}

/* ==========================
   HERO CONTAINER
========================== */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    max-width: 1440px;
    width: 100%;
}

/* ==========================
   HERO TEXT
========================== */
.hero-text {
    flex: 1;
    text-align: start;
    flex-flow: column;
}

.hero-header {

    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.3;
    color: #282828;
    margin-bottom: 1rem;
}

.hero-subheader {

    font-weight: 400;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.4;
    color: #6B6B6B;
}

/* ==========================
   HERO IMAGE / CARDS
========================== */

.hero-image {
    position: relative;
    flex: 1 1 300px;
    width: 100%;
    max-width: 600px;
    height: 60vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card--back {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 240px;
    border-radius: 12px;
    background: var(--Primary-Color);
    transform: translate(-30%, -50%) translate(-70px, 10px) rotate(20deg);
    z-index: 1;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.10);
}


.mockup-card--middle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 240px;
    border-radius: 12px;
    background: var(--Secondary-Color);
    transform: translate(-35%, -40%) translate(0, 0px) rotate(20deg);
    z-index: 2;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.10);
}

.mockup-card--front {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 284px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
    transform: translate(-100%, -50%) translate(70px, 10px) rotate(-90deg);
    z-index: 3;
    overflow: hidden;
}

.mockup-card--front .mockup-card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 284px;
    height: 150px;
    background: url('/images/hero/hero-main-image.png') center center / cover no-repeat;
    transform: translate(-50%, -50%) rotate(90deg);
    transform-origin: center;
}

.contact-link-icon {
    border: 1.5px solid #B7B7B7;
}

@media (max-width: 400px) {
    .mockup-card--back {
        width: 120px;
        height: 192px;
        transform: translate(-30%, -50%) translate(-55px, 8px) rotate(20deg);
    }

    .mockup-card--middle {
        width: 120px;
        height: 192px;
        transform: translate(-35%, -40%) translate(0, 0px) rotate(20deg);
    }

    .mockup-card--front {
        width: 120px;
        height: 227px;
        transform: translate(-100%, -50%) translate(55px, 8px) rotate(-90deg);
    }

    .mockup-card--front .mockup-card-image {
        width: 227px;
        height: 120px;
    }

    .footer-main {
        flex-direction: row;
    }
}

@media (min-width: 640px) {
    .mockup-card--back {
        width: 180px;
        height: 288px;
        border-radius: 14px;
        transform: translate(-30%, -50%) translate(-85px, 12px) rotate(20deg);
    }

    .mockup-card--middle {
        width: 180px;
        height: 288px;
        border-radius: 14px;
        transform: translate(-35%, -40%) translate(0, 0px) rotate(20deg);
    }

    .mockup-card--front {
        width: 180px;
        height: 341px;
        border-radius: 14px;
        transform: translate(-100%, -50%) translate(85px, 12px) rotate(-90deg);
    }

    .mockup-card--front .mockup-card-image {
        width: 341px;
        height: 180px;
    }

    .flex-cols {
        flex-direction: column !important;
    }

    .footer-main {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .mockup-card--back {
        width: 250px;
        height: 400.879px;
        border-radius: 16px;
        transform: translate(-30%, -50%) translate(-120px, 15px) rotate(20deg);
    }

    .mockup-card--middle {
        width: 250px;
        height: 400.879px;
        border-radius: 16px;
        transform: translate(-35%, -40%) translate(0, 0px) rotate(20deg);
    }

    .mockup-card--front {
        width: 250px;
        height: 473.879px;
        border-radius: 16px;
        transform: translate(-100%, -50%) translate(120px, 15px) rotate(-90deg);
    }

    .mockup-card--front .mockup-card-image {
        width: 473.879px;
        height: 250px;
    }
}

.hero-image {
    min-height: 300px;
}

@media (min-width: 640px) {
    .hero-image {
        min-height: 400px;
    }

    .footer-main {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        min-height: 500px;
    }
}

.webdev-hero {
    background: url('/images/Services/webdev-hero-bg.png') center center / cover no-repeat;
    border-radius: 24px;
    padding: 2rem;
}

/* ==========================
  Trust Strip Section
========================== */

.trust-main-text h6 {
    max-width: 211px;
    height: 46px;
    color: #010205;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.box {
    /* Mask slightly smaller than button */
    -webkit-mask: radial-gradient(90px at 98% 97%, transparent 99%, black 100%);
    mask: radial-gradient(90px at 98% 97%, transparent 99%, black 100%);
    border-radius: 30px;
}

.project-complete {
    border-radius: 30px;
}

.counting {
    color: #99CF63;
    font-family: Outfit;
    font-size: 84px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -2.52px;
}

.challenge-box-inner {
    background: radial-gradient(40.25% 106.25% at 50.26% 50%, rgba(0, 142, 43, 0.10) 4.81%, rgba(140, 198, 63, 0.10) 100%);
    padding: 30px 70px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.07);
    text-align: center;
    margin-right: 0;
    width: auto;
}


/* ==========================
  Why Choose Us Section
========================== */
.why-us-wrapper {
    background: url('/images/Background/bgnoise.png') center center / cover no-repeat;

    backdrop-filter: blur(32px);
    width: 100%;
}

/* ==========================
 Career Section
========================== */

.first {
    background-color: var(--Primary-warmth);
    border-radius: 24px;
    height: 15px;
    width: 260px;
    margin-bottom: 10px;
}

.second {
    background-color: var(--Primary-warmth);
    border-radius: 24px;
    height: 15px;
    width: 200px;
    margin-bottom: 10px;
}

.third {
    background-color: var(--Primary-warmth);
    border-radius: 24px;
    height: 15px;
    width: 170px;
    margin-bottom: 10px;
}

.badge-two {
    top: 70%;
    left: -10%
}

/* ==========================
 CTA Section
========================== */
.cta-section {
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.date-service {
    color: var(--Black-1, #010205);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    border-radius: 60px;
    border: 0.8px solid var(--Secondary-light-gray, #D2D2D2);
    background: var(--Primary-warmth, #FFFEFD);
    display: inline-flex;
    height: 40px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    max-width: 100%;
    white-space: nowrap;
}

.service-hero-image-inner {
    position: relative;
    display: inline-block;
}

.service-hero-image-inner img {
    border-radius: 42px;
    display: block;
}

.service-hero-image-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    border-radius: 42px 42px 0 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;

}

.sevice-hero {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(to top, var(--Radial) 40%, transparent 40%);
    position: relative;
}

.sevice-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--Radial);
    z-index: 0;
}

.sevice-hero>* {
    position: relative;
    z-index: 1;
}

.career-hero {
    background: rgba(0, 142, 43, 0.10);
}

.p-18 {
    padding: 18px !important;
}

.p-32 {
    padding: 32px !important;
}

.circle {
    border-radius: 50% !important;
}

.career-why-us-header-text h2 {
    color: var(--black-1);
    font-size: 40px;
    font-weight: 600;
    line-height: 140%;
    ;
}

/* ==========================
   RESPONSIVE MEDIA QUERIES
========================== */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .mockup-card--back,
    .mockup-card--middle {
        width: 65%;
    }

    .mockup-card--front {
        width: 90%;
    }
}

@media (max-width: 640px) {
    .hero-header {
        font-size: 2rem;
    }

    .hero-subheader {
        font-size: 0.875rem;
    }

    .mockup-card--back,
    .mockup-card--middle {
        width: 80%;
    }

    .mockup-card--front {
        width: 95%;
    }

    .nav-hidden {
        display: none !important;
    }
}

.why-us-cards-container {
    margin-top: 3rem;
}

.gallery {
    background: #EEE;
}

.gallery-cell {
    width: 66%;
    height: 200px;
    margin-right: 10px;
    counter-increment: gallery-cell;
    position: relative;
    overflow: hidden;
}

.gallery-cell:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    content: counter(gallery-cell);
    font-size: 80px;
    color: white;
    z-index: 1;
}

.gallery-cell img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-container {
    perspective: 1000px;
}

.carousel-slide {
    transition: all 0.6s ease;
}

.slide-left {
    transform: translateX(0);
    z-index: 1;
}

.slide-center {
    transform: translateX(0);
    z-index: 10;
}

.slide-right {
    transform: translateX(0);
    z-index: 1;
}

.slide-hidden {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.webdev-header-text {
    border-radius: 100px;
    border: 1px solid #FFF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(153, 153, 153, 0.10) 14.66%);
}

.web-dev-card {
    border-radius: 30px;
    padding: 20px;
    background: #FFF;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
}

.webdev-cards {
    padding: 20px;
}

.workflow-card {
    background: linear-gradient(135deg, rgba(6, 34, 45, 0.6) 0%, rgba(4, 24, 32, 0.8) 100%);
    border: 1px solid rgba(34, 87, 103, 0.3);
    transition: all 0.3s ease;
}

.workflow-card:hover {
    border-color: rgba(132, 204, 22, 0.5);
    background: linear-gradient(135deg, rgba(6, 34, 45, 0.8) 0%, rgba(4, 24, 32, 0.9) 100%);
}

.arrow-path {
    stroke: #84cc16;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
}

.dot {
    fill: #84cc16;
}

.icon-wrapper {
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.3);
}

/* -------------------------------------------------
   Process – ONE vertical line for every dot
   ------------------------------------------------- */
.how-we-work {
    background-color: #010205;
}

.process {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: -1rem;

}

.left-content {
    top: calc(30% - 1px);
}

.step {
    position: relative;
    width: 100%;

}

.dot-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-connector-right {
    transform: translate(-10%, -50%);
}

.dot-connector-left {
    display: flex;
    flex-direction: row-reverse;
    transform: translate(-90%, -50%);
}

.step .content {
    position: absolute;
    top: calc(50% + 8rem);
    transform: translateY(-50%);
    width: 460px;
    max-width: 90vw;
}

.step.right .content {
    left: calc(50% + 1rem);
    text-align: left;
}

.step.left .content {
    right: calc(50% + 1.5rem);
    text-align: right;
}


.card {
    border-radius: 16px;
    background: #06161D;
    backdrop-filter: blur(28.084999084472656px);
    padding: 1rem 1.5rem;
    width: 100%;
    transition: transform 0.2s;
    text-align: start;
    color: #fff;

}

.card p {
    color: #fff !important;
}

.card .flex img {
    color: #fff !important;
}

.card:hover {
    transform: scale(1.02);
}

.card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--Secondary-Color);
}

.card p {
    margin: 0;
    font-size: 0.95rem;
    color: #8b949e;
}

.wireframes .card::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: #f0883e;
    border-radius: 50%;
    transform: rotate(-15deg);
}


@media (max-width: 768px) {
    .process {
        gap: 2rem;
        padding: 2rem 0;
    }

    .process::before {
        display: none;
    }

    .step {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        display: none !important;
    }


    .dot-connector,
    .dot-connector-left,
    .dot-connector-right {
        position: static;
        transform: none !important;
        justify-content: center;
        margin-bottom: 1rem;
        display: none;
    }

    .left {
        margin-bottom: 1rem !important;
    }

    .right {
        margin-bottom: 1rem !important;
    }

    .step .content {
        position: static;
        transform: none;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        text-align: center;
    }
}

/* -------------------------------------------------
   PRICING CARD WEBDEV SECTION
   ------------------------------------------------- */
.pricing-card {
    height: fit-content !important;
    min-height: 300px;
}

.pricing-card h3 {
    color: #1A1A1A;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.pricing-card p {
    color: #667085;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.pricing-grid {
    display: grid;
    align-items: start;
}


@media (max-width: 768px) {
    .pricing-card {
        min-height: auto;
    }

    .footer-wrapper {
        display: flex;
        flex-direction: column;
        padding: 20px;
        justify-content: center;
        align-items: center;
    }

    .company-detail {
        flex-direction: column;
    }

    .footer-navigation {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

}

.non-active {
    border-radius: 16px;
    border: 1px solid var(--Radial, #008E2B);
    background: #EFFAF9;
    box-shadow: 0 109px 80px 0 rgba(11, 102, 73, 0.03), 0 70.648px 46.852px 0 rgba(11, 102, 73, 0.02), 0 41.985px 25.481px 0 rgba(11, 102, 73, 0.02), 0 21.8px 13px 0 rgba(11, 102, 73, 0.01), 0 8.881px 6.519px 0 rgba(11, 102, 73, 0.01), 0 2.019px 3.148px 0 rgba(11, 102, 73, 0.01);
}

.web-dev-cta {
    border-radius: 24px;
    background: radial-gradient(40.25% 106.25% at 50.26% 50%, rgba(0, 142, 43, 0.10) 4.81%, rgba(140, 198, 63, 0.10) 100%);
    padding: 2rem;
    margin-top: 2rem;
}

.clip {
    padding-bottom: 70px;
    mask: radial-gradient(70% 150px at top, #0000 100%, #000);
    position: relative;
    height: 300px;
    margin-top: -20rem;
}


/* -------------------------------------------------
   It-suppor features section
   ------------------------------------------------- */
.features-section {
    padding: 60px 20px;
}

.features-container {
    max-width: 1202px;
    margin: 0 auto;
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(0, 139, 209, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #010205;
    margin: 0;
}

.feature-description {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #5a5a59;
    margin: 0;
    max-width: 390px;
}


@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-section {
        padding: 40px 20px;
    }
}

.features-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;

}

.features-header-container .features-header {
    color: var(--Black-1, #010205);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.features-second-section {
    min-height: 310px;
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 24px;
background: radial-gradient(40.25% 106.25% at 50.26% 50%, rgba(0, 142, 43, 0.10) 4.81%, rgba(140, 198, 63, 0.10) 100%);
gap:30px;
margin-top: 4rem;
}

.features-second-section h3 {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.features-second-section span{
color: var(--Body-font-Color);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%;
max-width: 70%;
}

/* -------------------------------------------------
   It-suppor features section
   ------------------------------------------------- */
.ml-section {
  background: linear-gradient(to bottom right, #f9fafb, #eff6ff);
  padding: 4rem 1rem;

}

.ml-container {
  max-width: 1280px;
  margin: 0 auto;
    margin-top: 70px;
    overflow: hidden;
    padding: 2rem;

}

.ml-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
    position: relative;
}

.ml-content {
  flex: 0 0 70%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;

}

.ml-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  width: fit-content;
}

.ml-badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-heading {
color: var(--Secondary-Black, #131313);
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 130%;
letter-spacing: -0.48px;
}

.ml-description {
color: var(--Body-font-Color, #5A5A59);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}

.ml-cta {
  padding-top: 1rem;
}

.ml-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #111827;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.ml-btn:hover {
  background-color: #1f2937;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.ml-image-wrap {
  position: relative;
  flex: 1;
  background: url('/images/ml-service/robot-hand.png') center/contain no-repeat;
  min-height: 500px;
 transform: translateX(-400px) translateY(-70px) scaleX(-1);
   min-width: 800px;
   overflow: hidden;
}

.ml-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(147,197,253,0.4), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  transform: scaleX(-1);
}


/* Responsive */
@media (max-width: 1024px) {
  .ml-flex {
    flex-direction: column;
  }

  .ml-content {
    flex: 1;
    text-align: center;
  }

  .ml-image-wrap {
    margin-top: 2rem;
  }
}
.ml-card-box-shadow{
    box-shadow: 0 109px 80px 0 rgba(11, 102, 73, 0.03), 0 70.648px 46.852px 0 rgba(11, 102, 73, 0.02), 0 41.985px 25.481px 0 rgba(11, 102, 73, 0.02), 0 21.8px 13px 0 rgba(11, 102, 73, 0.01), 0 8.881px 6.519px 0 rgba(11, 102, 73, 0.01), 0 2.019px 3.148px 0 rgba(11, 102, 73, 0.01);
}
.ml-process {
  max-width: 1000px;
  margin: auto;

  text-align: center;
}
.ml-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}
.ml-subtitle {
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ml-timeline {
  position: relative;
}
.ml-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;

  height: 100%;

  transform: translateX(-50%);
}
.ml-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}
.ml-left-side .ml-info {
  width: 45%;
  text-align: right;
  border-radius: 82px;
background: #FFF;
padding: 2rem;

box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.07);
}
.ml-right-side .ml-info {
  width: 45%;
  text-align: left;
  border-radius: 82px;
background: #FFF;
padding: 2rem;
box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.07);
}
.ml-badge {
 border-radius: 74px;
background: rgba(208, 213, 221, 0.30);
box-shadow: 0 5px 40px 0 rgba(140, 198, 63, 0.10) inset;
text-align: center;

  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;


}
.ml-badge-right{
    position: absolute;
    top: 30%;
    right: 36%;

}
.ml-badge-left{
    position: absolute;
    left: 35%;
    top: 30%;

}
.ml-badge span{
 font-weight: 600;
  font-size: 1.25rem;
}

.ml-info h3 {
  font-weight: 600;
  margin-bottom: 10px;
}
.ml-info ul {
  list-style: none;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0;
}
.ml-info ul li::before {
  content: "•";
  color: var(--Body-font-Color);
  margin-right: 8px;
}
@media (max-width: 768px) {
  .ml-timeline::before {
    left: 20px;
  }
  .ml-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .ml-left-side .ml-info,
  .ml-right-side .ml-info {
    width: 100%;
    text-align: left;
  }
  .ml-badge {
    margin: 10px 0;
  }
}
.bottom-banner--why-choose-use{
    border-radius: 24px;
background: radial-gradient(40.25% 106.25% at 50.26% 50%, rgba(0, 142, 43, 0.10) 4.81%, rgba(140, 198, 63, 0.10) 100%);
}
.portfolio-header{
color: var(--Secondary-Black, #131313);
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 140%;
}
.portfolio-img img{
    height: 90%;
    width: 90%;
}
.portfolio-text{
color: var(--Body-font-Color, #5A5A59);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}
.portfolio{

    align-items: center;
}
.page-container {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.section-container {
  padding: 80px 120px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 90px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.button-primary {
    color: var(--color-text-light);
    font-size: 20px;
    line-height: 26px;
}

.button-dark {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    font-size: 18px;
    line-height: 25.2px;
}

@media (max-width: 992px) {
    .section-container {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 40px 20px;
    }
}


.header-section {
    background: url('${ASSET_PATH}/3a52e4b4a36950329e8f961dba5a2a0972d8bba9.png') lightgray;
    backdrop-filter: blur(6px);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 120px;
    max-width: 1440px;
    margin: 0 auto;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    border: 1px solid #b2cfd1;
    border-radius: 58px;
    text-decoration: none;
    color: #5a5a59;
    font-size: 14px;
    line-height: 19.6px;
    transition: background-color 0.3s, color 0.3s;
}
.main-nav a:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.header-cta {
    gap: 12px;
    padding: 16px 24px;
}

@media (max-width: 1200px) {
    .header-container {
        padding: 16px 40px;
    }
    .main-nav {
        display: none; /* Simple responsive solution: hide nav on smaller screens */
    }
}
@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }
    .header-cta {
        display: none;
    }
}



.hero-section {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-content {
    flex: 1;
    max-width: 716px;
}
.hero-title-wrapper {
    position: relative;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.48px;
    margin: 0 0 0 80px;
}
.hero-title-icon {
    position: absolute;
    top: -5px;
    left: 0;
}
.hero-title-arrow {
    position: absolute;
    top: 14px;
    left: 14px;
}
.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 592px;
    margin: 0 0 44px 0;
}
.hero-cta {
    gap: 12px;
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 104px;
}
.hero-stat-number {
    font-size: 48px;
    font-weight: 600;
}
.hero-stat-divider {
    border: none;
    border-left: 1px solid #f2f2f2;
    height: 28px;
    margin: 0;
}
.hero-stat-label {
    font-size: 24px;
    font-weight: 600;
}
.hero-image-container {
    flex: 0 0 491px;
}
.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        margin-left: 0;
    }
    .hero-title-wrapper {
        padding-left: 80px; /* Keep space for icon */
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stat {
        justify-content: center;
        margin-top: 60px;
    }
    .hero-image-container {
        flex-basis: auto;
        width: 100%;
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-title-wrapper {
        padding-left: 0;
        display: flex;
        justify-content: center;
    }
    .hero-title-icon {
        display: none;
    }
    .hero-stat {
        flex-direction: column;
        gap: 10px;
        margin-top: 40px;
    }
    .hero-stat-divider {
        display: none;
    }
}



.partners-section {
    background-color: #ffffff;
}
.partners-container {

    align-items: center;
    gap: 62px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.partners-container img {
    opacity: 0.7;
    max-height: 34px;
}



.stats-section {
    background-color: #ffffff;
}
.stats-container {
    text-align: left;
}
.stats-heading {
    margin-bottom: 80px;
}
.stats-heading h2 {
    color: #222222;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.48px;
    margin: 0 0 22px 0;
    max-width: 693px;
}
.stats-heading p {
    color: #666666;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    max-width: 610px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px;
}
.stat-item {
    max-width: 376px;
}
.stat-number {
    color: #d9d9d9;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 100px;
    line-height: 1.3;
    margin-bottom: 13px;
}
.stat-description {
    color: #5a5a59;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}
@media (max-width: 992px) {
    .stats-heading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .stat-item {
        margin: 0 auto;
    }
    .stat-number {
        font-size: 80px;
    }
}



.pain-points-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 70.71%, #fefce8 141.42%);
}
.pain-points-container {
    text-align: center;
}
.pain-points-title {
    color: #0a0a0a;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto 64px;
    max-width: 915px;
}
.pain-points-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pain-point-card {
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    width: 288px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.pain-point-icon {
    margin-bottom: 16px;
}
.pain-point-card p {
    color: #5a5a59;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}
@media (max-width: 1250px) {
    .pain-points-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}



.features-table-section {
    background-color: #ffffff;
}
.features-table-container {
    max-width: 1200px;
    margin: 0 auto;
}
.features-table-heading {
    color: #313131;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    max-width: 1046px;
    margin: 0 auto 60px;
}
.features-table {
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    overflow: hidden;
}
.features-table-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    background: var(--Radial);
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    border-radius: 24px 24px 0 0;
}
.header-cell {
    padding: 11px 42px;
}
.features-table-body {
    background-color: #ffffff;
}
.table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid rgba(208, 213, 221, 0.58);
}
.table-row:last-child {
    border-bottom: none;
}
.table-cell {
    padding: 24px 42px;
    color: #263238;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
}
.benefit-cell {
    gap: 8px;
    align-items: flex-start;
}
@media (max-width: 992px) {
    .features-table-header, .table-row {
        grid-template-columns: 1fr;
    }
    .features-table-header {
        display: none;
    }
    .table-row {
        padding: 20px;
        gap: 10px;
    }
    .table-cell {
        padding: 5px 0;
    }
    .table-cell:nth-child(1) { font-weight: bold; }
}



.use-cases-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
}
.use-cases-title {
    color: #313131;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 60px 0;
}
.use-cases-content {
    position: relative;
}
.use-cases-list {
    max-width: 524px;
}
.use-case-item {
    padding: 43px 0;
    border-bottom: 1px solid #EAEAEA;
}
.use-case-item:first-child {
    padding-top: 0;
}
.use-case-item h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #8c9498;
}
.use-case-item.active h3 {
    color: #302a27;
}
.use-case-item p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #8c9498;
}
.use-case-item.active p {
    color: #263238;
}
.use-cases-image-wrapper {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 412px;
}
.use-case-image {
    width: 100%;
    height: auto;
}
@media (max-width: 992px) {
    .use-cases-image-wrapper {
        display: none;
    }
    .use-cases-list {
        max-width: 100%;
    }
}



.opportunity-section {
    background-color: var(--color-dark-bg);
}
.opportunity-container {
    color: var(--color-text-light);
}
.opportunity-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 27px 0;
}
.opportunity-cards {
    display: flex;
    gap: 16px;
}
.opportunity-card {
    flex: 1;
 border-radius: 24px;
background: radial-gradient(40.25% 106.25% at 50.26% 50%, rgba(0, 142, 43, 0.21) 4.81%, rgba(140, 198, 63, 0.21) 100%);
backdrop-filter: blur(27.385334014892578px);
    padding: 28px;
    backdrop-filter: blur(5px);
    min-height: 197px;
}
.opportunity-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 24px 0;
}
.opportunity-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #d9d9d9;
    margin: 0;
}
@media (max-width: 768px) {
    .opportunity-cards {
        flex-direction: column;
    }
}



.testimonials-section {
    background-color: #ffffff;
}
.testimonials-container {
    text-align: center;
}
.testimonials-heading {
    margin-bottom: 90px;
}
.testimonials-heading h2 {
    color: #010205;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.48px;
    margin: 0 0 15px 0;
}
.testimonials-heading p {
    color: #5e6a70;
    font-size: 16px;
    line-height: 1.4;
    max-width: 852px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: left;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;

}
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding-right: 30px;
    border-right: 1px solid #d9d9d9;
}
.testimonial-card:last-child{
    border-right: none;
      padding-right: 0;
}
.testimonials-grid .testimonial-card:last-child {
    border-right: none;
    padding-right: 0;
}
.testimonials-grid .testimonial-card:first-child {
    border-left: none;
    padding-left: 0;
}
.testimonial-quote {
    color: #5a5a59;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.author-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.author-name {
    color: #010205;
    font-size: 16px;
    line-height: 1.4;
}
.author-title {
    color: #5a5a59;
    font-size: 16px;
    line-height: 1.4;
}
.testimonial-pagination {
    margin-top: 32px;
}
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        border: none;
        padding: 0;
    }
    .testimonial-card {
        border-right: none;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid #d9d9d9;
    }
    .testimonial-card:last-child {
        border-bottom: none;
    }
}



.cta-section {
    padding: 40px 120px;
}
.cta-container {
    background-color: #020609;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding: 58px;
}
.cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.cta-bg-noise {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('${ASSET_PATH}/3a52e4b4a36950329e8f961dba5a2a0972d8bba9.png');
    backdrop-filter: blur(6px);
    transform: rotate(180deg);
}
.cta-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2138px;
    height: 2480px;
    transform: translate(-50%, -50%) rotate(115.48deg);
    opacity: 0.3;
}
.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cta-text h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.48px;
    margin: 0 0 28px 0;
    max-width: 542px;
}
.cta-text p {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}
.cta-button {
    background-color: #ffffff;
    color: #010205;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 16px;
    gap: 20px;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .cta-text h2 {
        font-size: 36px;
    }
}



.footer-section {
    background-color: #010205;
    color: #ffffff;
}
.footer-top {
    padding: 85px 120px;
    border-bottom: 1px solid #333;
}
.footer-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.footer-top-text h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 23px 0;
    max-width: 663px;
}
.footer-top-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 702px;
}
.footer-top-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-contact-btn {
    background: radial-gradient(173.07% 205.27% at 50% 50%, #008e2b 4.81%, #8cc63f 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}


.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #ffffff;
    border-radius: 50%;
}
#partners{
    background: #fff !important;
    width: 100%;
    background-color: #ffff !important;
    position: relative;
    z-index: 2;
    height: 400px;
}
.hero-image-container{
    z-index: 3;
}
.gradient-left-border {
  position: relative;
}

.gradient-left-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 1rem 0 0 1rem;
  background:var(--Radial);
}
.floating-image{
    right: -70%;
    transform: translateY(-240%)
}
.contact-bg-noise{
    padding: 1rem;
background: lightgray url("/images/Background/bgnoise.png") no-repeat center/78.125px 78.125px;
background-size: cover;


backdrop-filter: blur(32px);
}
