* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

@font-face {
    font-family: Inter-Bold;
    src: url(../assets/fonts/inter/Inter-Bold.ttf);
}

@font-face {
    font-family: Inter-Black;
    src: url(../assets/fonts/inter/Inter-Black.ttf);
}


/* sarangus989@gmial.com */


.main {
    position: relative;
    width: 100%;
    height: 100%;
}

@keyframes flame {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translate(-50%, -60%) scale(1.5);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    border-radius: 10px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #707070;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000000;
    background-image: -webkit-linear-gradient(90deg,
            transparent,
            #8d63a8 60%,
            transparent,
            transparent)
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

#scrollableDiv {
    scroll-behavior: smooth;
}

@font-face {
    font-family: Inter-Regular;
    src: url(../assets/fonts/inter/Inter-Regular.ttf);
}



::-moz-selection {
    color: rgb(255, 255, 255);
    background: #000000;
}

::selection {
    color: rgb(255, 255, 255);
    background: #000000;
}

.fr-up {
    overflow: hidden;
    position: relative;
}

.fr-up2 {
    overflow: hidden;
    padding-left: 25px !important;
    padding: 15px;
    padding-right: 25px;
    margin-left: -25px;
}

.msk {
    position: relative;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
}


h2 {
    /* font-family: AlbertSans-Bold; */

    font-family: 'Playfair Display', serif;
    font-size: 43px;
    font-weight: 600;
}







/* -----------buttons style---------------- */



.btn-shimmer {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0F6E56, #1D9E75, #17b9a0);
    color: #fff;
    font-size: 15px;
    /* font-weight: 700; */
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(23, 185, 160, 0.35);
    letter-spacing: 0.3px;
}

/* Shimmer light sweep */
.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    animation: shimmer 2.4s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.btn-shimmer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(23, 185, 160, 0.5);
}

.btn-shimmer:active {
    transform: scale(0.97);
}


/* ════════════════════════════════
   BUTTON 2 — PULSE RING
════════════════════════════════ */
.btn-pulse-wrap {
    position: relative;
    display: inline-flex;
}

/* Animated pulse rings */
.btn-pulse-wrap::before,
.btn-pulse-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    background: linear-gradient(135deg, #17b9a0, #0F6E56);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
    z-index: 0;
}

.btn-pulse-wrap::after {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }

    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

.btn-pulse {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0F6E56, #17b9a0);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(23, 185, 160, 0.35);
}

.btn-pulse:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(23, 185, 160, 0.45);
}

.btn-pulse:active {
    transform: scale(0.97);
}


/* ════════════════════════════════
   BUTTON 3 — ARROW SLIDE
════════════════════════════════ */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    /* background: linear-gradient(135deg, #085041, #1D9E75); */
    color: #fff;
    font-size: 15px;
    /* font-weight: 700; */
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(23, 185, 160, 0.3);
}

/* Arrow hidden by default */
.btn-arrow .arr {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0;
    transition: max-width 0.35s ease, opacity 0.3s ease, margin-left 0.3s ease;
    font-size: 19px;
}

/* Arrow slides in on hover */
.btn-arrow:hover .arr {
    max-width: 30px;
    opacity: 1;
    margin-left: 10px;
}

.btn-arrow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(23, 185, 160, 0.45);
}

.btn-arrow:active {
    transform: scale(0.97);
}


/* ════════════════════════════════
   BUTTON 4 — OUTLINE FILL
════════════════════════════════ */
.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #17b9a0;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 40px;
    border-radius: 50px;
    border: 2.5px solid #17b9a0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.35s ease, box-shadow 0.2s ease;
}

/* Fill slides in from left */
.btn-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0F6E56, #17b9a0);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
    z-index: 0;
    border-radius: 50px;
}

.btn-fill:hover::before {
    transform: scaleX(1);
}

.btn-fill:hover {
    color: #fff;
    box-shadow: 0 10px 28px rgba(23, 185, 160, 0.35);
    border-color: #17b9a0;
}

/* Text stays above the fill */
.btn-fill span {
    position: relative;
    z-index: 1;
}

.btn-fill:active {
    transform: scale(0.97);
}


/* --------buttons style close ------------ */


/* index  */

@font-face {
    font-family: AlbertSans-Black;
    src: url(../assets/fonts/albrt/AlbertSans-Black.ttf);
}

@font-face {
    font-family: AlbertSans-Bold;
    src: url(../assets/fonts/albrt/AlbertSans-Bold.ttf);
}


.sec1 {
    /* padding: 80px 0 120px 0; */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    overflow: hidden;
    background: url(../assets/bgs/39.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-image: url(../assets/bgs/37.jpg);
    background-size: cover;
    background-position: center; */

}

.hdr-cont {
    padding: 15px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hdr-cont::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 105.5%;
    height: 100%;
        background-image: linear-gradient(#000000, #0a3ba4);
    /* background-image: linear-gradient(#3d57a2, #001d5b); */
    /* background-image: linear-gradient(#8D63A8, #241455); */
    z-index: -1;
    border: 1px solid #ffffffb7;
    border-radius: 50px;
}

.hdr-logo img {
    height: 52px;
    object-fit: contain;
    position: relative;
    top: 7px;
}

.hdr-cnt p {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
}

.hdr-pages ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hdr-pages ul p {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
}



/* what we do ----------------------------- */

/* :root{
    --what-we-do-bg:#FAF8EF;
    --what-we-do-ink:#151322;
    --what-we-do-ink-2:#5B6478;
    --what-we-do-purple:#6B3FE0;
    --what-we-do-orange:#F15A3C;
    --what-we-do-line:#E4E1D6;
  }


.what-we-do-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 10px;
}

 .what-we-do-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 45px;
    align-items: start;
}

  .what-we-do-kicker{
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.14em;
    color:var(--what-we-do-purple);
    margin-bottom:18px;
  }
  .what-we-do-section h2 {
    font-size: 50px;
    line-height: 50px;
}


  h2 .what-we-do-highlight{color: #8D63A8;}

  .what-we-do-list{
    border-top:1px solid var(--what-we-do-line);
  }
  .what-we-do-row{
    display:grid;
    grid-template-columns:32px 1fr 1fr;
    gap:24px;
    align-items:center;
    padding:20px 0;
    border-bottom:1px solid var(--what-we-do-line);
  }
  .what-we-do-row .what-we-do-index{
    font-size:14px;
    font-weight:700;
    color:var(--what-we-do-purple);
    align-self:start;
    margin-top:6px;
  }
  .what-we-do-row h3{
    font-size:22px;
    font-weight:500;
    letter-spacing:-0.01em;
  }
  .what-we-do-row p{
    font-size:14px;
    line-height:1.6;
    color:var(--what-we-do-ink-2);
  }

  @media(max-width:900px){
    .what-we-do-section{grid-template-columns:1fr;}
    .what-we-do-row{grid-template-columns:24px 1fr;}
    .what-we-do-row p{grid-column:2;}
  }
  @media(max-width:560px){
    .what-we-do-row{grid-template-columns:1fr;gap:8px;}
    .what-we-do-row .what-we-do-index{margin-top:0;}
    .what-we-do-row p{grid-column:1;}
  } */


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


.viewport {
    position: relative;
    width: 50%;
    height: 560px;
    margin-top: -680px;
    float: right;
    overflow: hidden;
}

.stage {
    position: relative;
    width: 100%;
    height: 1200px;
}

.rotator {
    position: absolute;
    inset: 0;
    animation: stepSpin 10s cubic-bezier(.8, 0, .5, 1) infinite;
}

.img {
    position: absolute;
    left: 50%;
    max-width: 90%;
    max-height: 50%;
    object-fit: contain;
}

.top {
    top: 42%;
    transform: translate(-50%, -100%) translateY(-20px);
    animation: fadeTop 10s cubic-bezier(.4, 0, .2, 1) infinite;
}

.bottom {
    top: 55%;
    transform: translate(40%, 0%) translateY(20px);
    animation: fadeBottom 10s cubic-bezier(.4, 0, .2, 1) infinite;
    rotate: 180deg;
}

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

    8% {
        transform: rotate(-180deg);
    }

    50% {
        transform: rotate(-180deg);
    }

    58% {
        transform: rotate(-360deg);
    }

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

@keyframes fadeTop {
    0% {
        opacity: 1;
    }

    8% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    58% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeBottom {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    58% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* hamburger icon */
.hdr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.14);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    z-index: 310;
    padding: 0;
    position: relative;
}

.hdr-burger span {
    display: block;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(.6, .2, .2, 1), opacity 0.25s ease, width 0.3s ease;
}

.hdr-burger span:nth-child(2) {
    width: 11px;
    align-self: flex-end;
    margin-right: 2px;
}

.hdr-burger.open span {
    width: 16px;
}

.hdr-burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hdr-burger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
}

.hdr-burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hdr-mobile-nav {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #151f2f, #003869 55%, #26147a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    overflow: hidden;
}

.hdr-mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.hdr-mobile-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hdr-mobile-blob-a {
    width: 420px;
    height: 420px;
    background: #B287D6;
    top: -120px;
    left: -100px;
    animation: hdr-float-a 9s ease-in-out infinite;
}

.hdr-mobile-blob-b {
    width: 340px;
    height: 340px;
    background: #4F6EF7;
    bottom: -100px;
    right: -80px;
    animation: hdr-float-b 11s ease-in-out infinite;
}

@keyframes hdr-float-a {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, 30px);
    }
}

@keyframes hdr-float-b {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -25px);
    }
}

.hdr-mobile-links {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
}

.hdr-mobile-links a {
    color: #fff;
    text-decoration: none;
    /* font-weight: 700; */
    font-size: 20px;
    letter-spacing: -0.01em;
    padding: 7px 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.2s ease;
    position: relative;
}

.hdr-mobile-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 3px;
    background: #E1C9F0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.hdr-mobile-links a:hover {
    color: #E1C9F0;
}

.hdr-mobile-links a:hover::after {
    width: 50%;
}

.hdr-mobile-nav.open .hdr-mobile-links a {
    opacity: 1;
    transform: translateY(0);
}

.hdr-mobile-nav.open .hdr-mobile-links a:nth-child(1) {
    transition-delay: 0.12s;
}

.hdr-mobile-nav.open .hdr-mobile-links a:nth-child(2) {
    transition-delay: 0.18s;
}

.hdr-mobile-nav.open .hdr-mobile-links a:nth-child(3) {
    transition-delay: 0.24s;
}

.hdr-mobile-nav.open .hdr-mobile-links a:nth-child(4) {
    transition-delay: 0.30s;
}

.hdr-mobile-nav.open .hdr-mobile-links a:nth-child(5) {
    transition-delay: 0.36s;
}

.hdr-mobile-cta {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    background: #fff;
    color: #400069;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hdr-mobile-nav.open .hdr-mobile-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.42s;
}

@media (max-width:860px) {
    .hdr-pages {
        display: none;
    }

    .hdr-cnt {
        display: none;
    }

}

.sec1-cont {
    /* margin-bottom: -70px; */
    position: relative;
    max-width: 700px;
    bottom: -30px;
}

.sec1-cont p {
    color: #fff;
    font-size: 17px;
    line-height: 25px;
}

.sec1-cont h1 {
    font-size: 47px;
    color: #ffffff;
}

.sec1-cont h1 span {
    font-size: 60px;
    letter-spacing: 3px;
    color: #ffffff;
    font-family: AlbertSans-Black;
}

.sec1-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    z-index: -1;
    object-fit: contain;
    opacity: 0.2;
}

.sec1-bg-lft {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    z-index: -2;
    object-fit: contain;
}

.sec1-blr-rnd {
    width: 1000px;
    height: 400px;
    position: absolute;
    top: -90px;
    right: -93px;
    z-index: -1;
    object-fit: contain;
    filter: blur(100px);
    background-color: #e6dcff67;
}

.hpy-clnts {
    display: flex;
    align-items: center;

}

.clnt-img {
    width: 50px;
    height: 50px;
}

.clnt-img.fr-lft {
    margin-left: -25px;
}

.clnt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clnt-txt {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.clnt-txt-cont span {
    color: #ffffff;
    font-weight: 900;
}

.clnt-txt-cont h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 900;
}

.clnt-txt-cont p {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.str-cont {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
}

.str-cont img {
    width: 20px;
    object-fit: contain;
}

.str-cont h3 {
    color: #fefdff;
    font-size: 17px;
    font-weight: 900;
}

.hro-men {
    width: 104%;
    object-fit: contain;
    margin-bottom: -12px;
}

.hero-rgt {
    width: 100%;
    position: relative;
}

.hero-rgt-bx1 {
    width: 235px;
    height: fit-content;
    position: absolute;
    bottom: 33%;
    left: -25%;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-rgt-bx1 h3 {
    font-size: 18px;
}

.hero-rgt-bx1 p {
    font-size: 14px;
    line-height: 19px;
}

/* service  ------------------ */

:root {
    --color-background: #FFFFFF;
    --color-text: #14151A;
    --color-text-muted: #63666F;
    --color-border: #EBEAE6;
    --color-software: #6C5CE7;
    --color-software-soft: #F1EEFF;
    --color-mobile: #E85D42;
    --color-mobile-soft: #FFEEE9;
    --color-website: #0E8C82;
    --color-website-soft: #E6F5F3;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.services-section {
    padding: 96px 32px;
}

.services-intro {
    max-width: 600px;
    margin-bottom: 56px;
}

.services-intro__heading {
    font-size: clamp(32px, 3.8vw, 44px);
    line-height: 1.15;
}

.services-intro__subtext {
    margin-top: 16px;
    font-size: 16.5px;
    color: var(--color-text-muted);
    max-width: 52ch;
}

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

.service-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px rgba(20, 21, 26, 0.18);
}

.ind-prod-sec {
    width: 100%;
    overflow-x: hidden;
    padding-top: 80px;
}




/* testimonial--------- */

:root {
    --testimonial-bg: #FBFAFD;
    --testimonial-text: #18141F;
    --testimonial-text-muted: #6B6775;
    --testimonial-border: #E9E5F1;
    --testimonial-accent: #6D3FA0;
    --testimonial-accent-deep: #3E1D66;
    --testimonial-accent-soft: #F3EEFB;
    --testimonial-star: #F5A623;
}

.testimonials-section {
    background: var(--testimonial-bg);
    padding: 100px 32px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--testimonial-accent);
    margin-bottom: 16px;
}

.testimonials-eyebrow svg {
    width: 15px;
    height: 15px;
}

.testimonials-heading {
    font-size: clamp(30px, 3.4vw, 40px);
    line-height: 1.18;
}

.testimonials-subtext {
    margin-top: 16px;
    font-size: 15.5px;
    color: var(--testimonial-text-muted);
    line-height: 1.65;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}



.testimonials-slider {
    margin-top: 56px;
    padding-bottom: 8px !important;
}

.testimonial-card {
    padding: 0 24px;
}

.testimonial-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--testimonial-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.testimonial-card__icon svg {
    width: 22px;
    height: 22px;
}

.testimonial-card__quote {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: var(--testimonial-text);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card__rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 26px 0 22px;
}

.testimonial-card__rating svg {
    width: 16px;
    height: 16px;
    fill: var(--testimonial-star);
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.testimonial-card__name {
    font-size: 14.5px;
    font-weight: 700;
}

.testimonial-card__role {
    font-size: 13px;
    color: var(--testimonial-text-muted);
}


.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
}

.testimonials-nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--testimonial-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.testimonials-nav-btn:hover {
    border-color: var(--testimonial-accent);
    background: var(--testimonial-accent-soft);
}

.testimonials-nav-btn svg {
    width: 15px;
    height: 15px;
}

.testimonials-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--testimonial-border);
    opacity: 1;
    margin: 0 !important;
    transition: width .15s ease, background .15s ease;
    border-radius: 4px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: linear-gradient(90deg, var(--testimonial-accent), var(--testimonial-accent-deep));
}


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

/* .service-card__photo {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
}

.service-card__photo--software {
    background-image: linear-gradient(0deg, rgba(20, 21, 26, 0.15), transparent 60%), url('https://images.pexels.com/photos/34803985/pexels-photo-34803985.jpeg?w=1260&h=750&dpr=1');
}

.service-card__photo--mobile {
    background-image: linear-gradient(0deg, rgba(20, 21, 26, 0.1), transparent 60%), url('https://images.pexels.com/photos/892757/pexels-photo-892757.jpeg?w=1260&h=750&dpr=1');
}

.service-card__photo--website {
    background-image: linear-gradient(0deg, rgba(20, 21, 26, 0.1), transparent 60%), url('https://images.pexels.com/photos/18096281/pexels-photo-18096281.jpeg?w=1260&h=750&dpr=1');
}

.service-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 100px;
}

.service-card__body {
    padding: 26px 26px 28px;
}

.service-card__title {
    font-size: 19px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card__description {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-card__features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-card__feature {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
}

.service-card__feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex: none;
}

.service-card__cta {
    font-size: 13.5px;
    font-weight: 700;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card__cta-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease;
}

.service-card:hover .service-card__cta-icon {
    transform: translateX(3px);
}

.service-card__cta-icon svg {
    width: 12px;
    height: 12px;
}

.service-card--software .service-card__badge {
    color: var(--color-software);
}

.service-card--software .service-card__feature-dot {
    background: var(--color-software);
}

.service-card--software .service-card__cta {
    color: var(--color-software);
}

.service-card--software .service-card__cta-icon {
    background: var(--color-software);
}

.service-card--mobile .service-card__badge {
    color: var(--color-mobile);
}

.service-card--mobile .service-card__feature-dot {
    background: var(--color-mobile);
}

.service-card--mobile .service-card__cta {
    color: var(--color-mobile);
}

.service-card--mobile .service-card__cta-icon {
    background: var(--color-mobile);
}

.service-card--website .service-card__badge {
    color: var(--color-website);
}

.service-card--website .service-card__feature-dot {
    background: var(--color-website);
}

.service-card--website .service-card__cta {
    color: var(--color-website);
}

.service-card--website .service-card__cta-icon {
    background: var(--color-website);
}

@media (max-width:900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 64px 20px;
    }
} */





:root {
    --rbs-bg: #FFFFFF;
    --rbs-text: #18141F;
    --rbs-text-muted: #6B6775;
    --rbs-border: #E9E5F1;

    --rbs-software: #6D3FA0;
    --rbs-software-soft: #F3EEFB;
    --rbs-mobile: #E85D42;
    --rbs-mobile-soft: #FFEEE9;
    --rbs-website: #0E8C82;
    --rbs-website-soft: #E6F5F3;

    --rbs-design: #C13584;
    --rbs-design-soft: #FBEAF4;
    --rbs-qa: #3E6FD9;
    --rbs-qa-soft: #EAF0FE;

    --rbs-ok: #2FAE6B;
    --rbs-pending: #F5A623;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--rbs-bg);
    color: var(--rbs-text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.rbs-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 100px 0px 20px 0;
}

.rbs-header {
    max-width: 640px;
    margin: 0 auto 52px;
    text-align: center;
}

.rbs-eyebrow {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--rbs-text-muted);
    margin-bottom: 5px;
}

.rbs-heading {
    font-size: clamp(24px, 2.6vw, 30px);
    line-height: 1.3;
}

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

.rbs-card {
    border-radius: 24px;
    padding: 28px 26px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px -24px rgba(24, 20, 31, 0.22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.rbs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px -22px rgba(24, 20, 31, 0.28);
}

.rbs-card--software {
    background: linear-gradient(165deg, #FFFFFF 0%, var(--rbs-software-soft) 100%);
    border: 1px solid #e6d6ff;
}

.rbs-card--mobile {
    background: linear-gradient(165deg, #FFFFFF 0%, var(--rbs-mobile-soft) 100%);
    border: 1px solid #ffdad0;
}

.rbs-card--website {
    background: linear-gradient(165deg, #FFFFFF 0%, var(--rbs-website-soft) 100%);
    border: 1px solid #c0e2dd;
}

.rbs-card--design {
    background: linear-gradient(165deg, #FFFFFF 0%, var(--rbs-design-soft) 100%);
    border: 1px solid #fad5ee;
}

.rbs-card--qa {
    background: linear-gradient(165deg, #FFFFFF 0%, var(--rbs-qa-soft) 100%);
    border: 1px solid #d8e1f8;
}

.rbs-card__title {
    font-size: 19px;
    margin-bottom: 8px;
}

.rbs-card__desc {
    font-size: 13.5px;
    color: var(--rbs-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ---------- widget mockup ---------- */
.rbs-widget {
    background: #fff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    box-shadow: 0 14px 32px -16px rgba(24, 20, 31, 0.22);
    margin-bottom: 22px;
}

.rbs-widget__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.rbs-widget__title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--rbs-text);
}

.rbs-widget__dots {
    display: flex;
    gap: 4px;
}

.rbs-widget__dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rbs-border);
}

/* software widget: deployment status */
.rbs-deploy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-top: 1px solid var(--rbs-border);
}

.rbs-deploy-row:first-of-type {
    border-top: none;
}

.rbs-deploy-row__env {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.rbs-deploy-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: none;
}

.rbs-deploy-status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
}

.rbs-status-ok {
    background: #E6F6ED;
    color: var(--rbs-ok);
}

.rbs-status-pending {
    background: #FFF3E0;
    color: var(--rbs-pending);
}

/* mobile widget: notifications */
.rbs-notif {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid var(--rbs-border);
}

.rbs-notif:first-of-type {
    border-top: none;
}

.rbs-notif__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rbs-notif__icon svg {
    width: 14px;
    height: 14px;
}

.rbs-notif__body strong {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
}

.rbs-notif__body span {
    font-size: 10.5px;
    color: var(--rbs-text-muted);
}

/* website widget: pages table */
.rbs-page-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid var(--rbs-border);
}

.rbs-page-row:first-of-type {
    border-top: none;
}

.rbs-page-row__name {
    font-size: 12px;
    font-weight: 600;
}

.rbs-page-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
}

/* ---------- feature list ---------- */
.rbs-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.rbs-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
}

.rbs-features__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex: none;
}

.rbs-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--rbs-border);
}

.rbs-cta__label {
    font-size: 13.5px;
    font-weight: 700;
}

.rbs-cta__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease;
}

.rbs-card:hover .rbs-cta__icon {
    transform: translateX(3px);
}

.rbs-cta__icon svg {
    width: 13px;
    height: 13px;
}

/* color assignment */
.rbs-card--software .rbs-features__dot {
    background: var(--rbs-software);
}

.rbs-card--software .rbs-cta__label {
    color: var(--rbs-software);
}

.rbs-card--software .rbs-cta__icon {
    background: var(--rbs-software);
}

.rbs-card--software .rbs-widget__title {
    color: var(--rbs-software);
}

.rbs-card--mobile .rbs-features__dot {
    background: var(--rbs-mobile);
}

.rbs-card--mobile .rbs-cta__label {
    color: var(--rbs-mobile);
}

.rbs-card--mobile .rbs-cta__icon {
    background: var(--rbs-mobile);
}

.rbs-card--mobile .rbs-widget__title {
    color: var(--rbs-mobile);
}

.rbs-card--website .rbs-features__dot {
    background: var(--rbs-website);
}

.rbs-card--website .rbs-cta__label {
    color: var(--rbs-website);
}

.rbs-card--website .rbs-cta__icon {
    background: var(--rbs-website);
}

.rbs-card--website .rbs-widget__title {
    color: var(--rbs-website);
}

.rbs-card--design .rbs-features__dot {
    background: var(--rbs-design);
}

.rbs-card--design .rbs-cta__label {
    color: var(--rbs-design);
}

.rbs-card--design .rbs-cta__icon {
    background: var(--rbs-design);
}

.rbs-card--design .rbs-widget__title {
    color: var(--rbs-design);
}

.rbs-card--qa .rbs-features__dot {
    background: var(--rbs-qa);
}

.rbs-card--qa .rbs-cta__label {
    color: var(--rbs-qa);
}

.rbs-card--qa .rbs-cta__icon {
    background: var(--rbs-qa);
}

.rbs-card--qa .rbs-widget__title {
    color: var(--rbs-qa);
}

/* design widget: swatches + type sample */
.rbs-swatch-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.rbs-swatch {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    flex: none;
}

.rbs-type-sample {
    border-top: 1px solid var(--rbs-border);
    padding-top: 12px;
}

.rbs-type-sample .big {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.rbs-type-sample .small {
    font-size: 11px;
    color: var(--rbs-text-muted);
}

/* qa widget: test suite rows */
.rbs-test-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid var(--rbs-border);
}

.rbs-test-row:first-of-type {
    border-top: none;
}

.rbs-test-row__name {
    font-size: 12px;
    font-weight: 600;
}

.rbs-test-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
}

@media (max-width:900px) {
    .rbs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:640px) {
    .rbs-section {
        padding: 64px 20px;
    }
}




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

.mn-tc-conr h3 {
    font-size: 17px;
    margin: 9px 0;
    color: #fff;
    font-weight: 100;
}

.mn-tc-conr {
    margin-top: 20px;
}

.mn-btn p {
    color: #ffffff;
    font-size: 14px !important;
}

.mn-btn i {
    color: #ffffff;
    font-size: 18px;
}

.mn-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 30px;
    border: 1px solid #8D63A8;
    border-radius: 50px;
    background: linear-gradient(110deg, #8D63A8, #140761);
    transition: all .3s;
    width: fit-content;
}

.sec1-bg-clr {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 80%;
    z-index: -2;
    object-fit: contain;
}

.sec1-bg-mbl {
    position: absolute;
    bottom: 62px;
    left: -180px;
    width: 480px;
    z-index: -2;
    object-fit: contain;
}

.sec1-bg-btm1 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
    object-fit: contain;
}

.sec1-bg-btm2 {
    position: absolute;
    bottom: 6.5vw;
    left: 0px;
    width: 100%;
    z-index: 0;
    object-fit: contain;
}

.sec1-cont-mn-ln {
    margin-bottom: 10px;
}

.sec2 {
    padding: 100px 0 20px 0;
    position: relative;
    margin-top: -110px;
    min-height: 500px;
    z-index: 3;
}

.sec2-lft-rnd {
    position: absolute;
    left: 0;
    top: -150px;
    width: 360px;
    object-fit: contain;
}

.page-lbl img {
    width: 20px;
    object-fit: contain;
}

.page-lbl {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    width: fit-content;
}

.page-lbl h3 {
    font-size: 17px;
}

.sec2-cont h2 {
    max-width: 600px;
}

.sec2-cont-rgt p {
    max-width: 430px;
    text-align: end;

}

.sec2-cont-rgt {
    width: fit-content;
    margin-left: auto;
}

.sec2-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 30px;
    border: 1px solid #8D63A8;
    border-radius: 50px;
    background: linear-gradient(110deg, #8D63A8, #140761);
    transition: all .3s;
    width: fit-content;
    margin-left: auto;
}

.sec2-btn p {
    color: #ffffff;
    font-size: 14px;
}

.sec2-btn i {
    color: #ffffff;
    font-size: 18px;
}

.prd-sldr .item .prd-sldr-cont-bx {
    width: 100%;
    min-height: 230px;
    border: 1px solid #8D63A8;
    border-radius: 30px;
    padding: 40px 20px 35px;
    transition: all .3s;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.prd-sldr .item .prd-sldr-cont-bx::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background-color: #673AB7;
}

.prd-sldr .item {
    padding: 0 10px;

}

.clsfctn {
    margin-bottom: 5px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    padding: 6px 26px;
    background: linear-gradient(to bottom, #ffffff, #ffffff);
    border-radius: 30px;
    font-size: 12px !important;
    font-weight: 600;
    color: #000000;
    border: 1px solid #8D63A8;
}

.clsfctn.fr-mn {
    background: linear-gradient(to bottom, #8D63A8, #400069);
    color: #fff;
}

.mn-cntr {
    box-shadow: 0 4px 10px rgba(139, 47, 224, 0.12), 0 10px 12px rgba(139, 47, 224, 0.14);
}

.prd-sldr {
    margin-top: 50px;
}

.prd-sldr .item {
    position: relative;
}

.prd-sldr .item.slick-current::after {
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(110deg, #8D63A8, #140761);
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    border-radius: 30px;
    transition: all .3s ease-in;
}

.prd-sldr .item.slick-current .actv-prdt-nm {
    opacity: 1;
}

.prd-sldr .item {
    padding-top: 55px;
    padding-bottom: 10px;
    transition: all .3s ease-in;
    margin: 0 7px;
}

.prd-sldr-cont-bx h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.prd-sldr-cont-bx h2 {
    font-size: 22px;
    margin-bottom: 7px;
    font-weight: 900;
    line-height: 30px;
    text-transform: uppercase;
}

.pdr-btn {
    padding: 11px 20px;
    background: linear-gradient(to bottom, #8D63A8, #400069);
    margin-top: 25px;
    border-radius: 10px;
    text-align: center;
}

.pdr-btn p {
    color: #fff;
}

.dot-cont-fl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.dt-txt .dot {
    width: 10px;
    height: 10px;
    border: 1px solid #8D63A8;
    border-radius: 50%;
    transition: all .3s;
}

.dt-txt {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dt-txt h3 {
    margin-bottom: 0;
    font-size: 15px;
}

.dt-dtl h4 {
    font-size: 14px;
    color: #530387;
}

.actv-prdt-nm p {
    color: #fffefe;
}

.actv-prdt-nm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 10px;
    opacity: 0;
}

.prd-sldr .slick-arrow {
    position: absolute;
    top: 90%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px #0000001f;
    cursor: pointer;
    transition: all .3s ease-in;
    border: 1px solid #E1C9F0;
}

.prd-sldr .nxt {
    right: 41%;
}

.prd-sldr .prv {
    left: 41%;
}

.prd-sldr .slick-arrow i {
    color: #000000;
}

.prd-sldr .slick-dots li.slick-active button {
    background-color: #400069;
    width: 18px;
    height: 9px;
    border-radius: 10px;
}

.prd-sldr .slick-dots {
    justify-content: center;
    margin-top: 30px;
}

.sec3 {
    background: #F6FAFF;
    padding: 120px 0;
    position: relative;
    margin-top: 80px;
}

.sec3-cont {
    display: flex;
    justify-content: space-between;
}

.sec3-cont-lft {
    max-width: 470px;
    position: relative;
    z-index: 2;
}

.sec3-cont-rgt {
    position: relative;
    z-index: 2;
}

.sec3-cont-lft h2 {
    font-size: 48px;
    line-height: 47px;
}

.sec3-cont-lft-btn p {
    padding: 10px 30px;
    border: 1px solid #8D63A8;
    border-radius: 50px;
    background: linear-gradient(110deg, #8D63A8, #140761);
    color: #fff;
    margin-top: 30px;
}

.sec3-cont-lft-box {
    width: 170px;
    height: 130px;
    border: 2px solid #8D63A8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.sec3-cont-lft-box h3 {
    font-size: 20px;
    text-align: center;
}

.bx-l-lft {
    margin-top: 150px;
}

.sec3-cont-rgt p {
    max-width: 470px;
}

.sec3-cont-rgt .sec3-cont-lft-box-fl {
    width: fit-content;
    margin-left: auto;
}

.sec3-cont-rgt-cont p {
    text-align: end;
}

.sec3-cont-rgt-cont {
    margin-top: 80px;
    position: relative;
}

.sec3-cont-rgt-cont-btn {
    margin-top: 40px;
    padding: 5px 5px 5px 30px;
    border: 1px solid #6b3a8b;
    border-radius: 50px;
    color: #020202;
    width: fit-content;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec3-cont-rgt-cont-btn-rnd {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #8D63A8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec3-cont-rgt-cont-btn-rnd i {
    color: #fff;
    rotate: -35deg;
}

.sec3-cont-rgt-cont-btn p {
    font-weight: 600;
}

.sec3-cont-mn {
    width: 650px;
    position: absolute;
    left: 47%;
    top: 54%;
    transform: translate(-50%, -50%);
}

.sec3 h1 {
    font-size: 190px;
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: max-content;
    color: #EEF5FF;
}

.sec4 {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.sec4-hdng {
    max-width: 800px;
    margin: 0 auto;
}

.sec4-hdng h2 {
    text-align: center;
    margin-bottom: 10px;
}

.sec4-hdng p {
    text-align: center;
}

.sec4-hdng .page-lbl {
    margin: 0 auto;
    margin-bottom: 10px;
}

.sec4-cont-lft {
    position: relative;
}

.sec4-cont-rnd {
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.sec4-cont {
    margin-top: 80px;
}

.sec4-cont-mbl {
    width: 85%;
    object-fit: contain;
    position: relative;
    left: 50%;
    transform: translateX(-50%);

}

.sec4-cont-rgt {
    width: 100%;
    padding: 40px 45px;
    border: 1px solid #D7D7D7;
    border-radius: 30px;
    position: relative;
    background: linear-gradient(70deg, #F4F8FF, #FFFFFF);
    margin-right: 30px;
}

.sec4-cont-rgt.fr-pad-lft {
    margin-left: 50px;
    margin-right: 0px;
    position: relative;
}

/* .sec4-cont-rgt.fr-pad-lft h3, .sec4-cont-rgt.fr-pad-lft p, .sec4-cont-rgt.fr-pad-lft h2{
    color: #fff;
}
.sec4-cont-rgt.fr-pad-lft::after {
    content: "";
    position: absolute;
    top: -12px;
    right: -30px;
    width: 200%;
    height: 105%;
    background-color: #25406e;
    border-radius: 50px;
    z-index: -1;
} */

.sec4-cont-rgt h2 {
    font-size: 28px;
}

.sec4-cont-dot-cont {
    margin-top: 30px;
    display: flex;
    align-items: start;
    gap: 50px;
    flex-wrap: wrap;
}

.sec4-cont-dot-cont-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.sec4-cont-dot-cont-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #8D63A8;
    border-radius: 50%;
}

.sec4-cont-dot-cont-flx h3 {
    font-size: 15px;
}

.sec4-cont .col-md-7 {
    display: flex;
    align-items: center;

}

.sec4-cont-lft-top-bx {
    width: 240px;
    height: fit-content;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: -20px;
    background: #fff;
    z-index: 2;
    padding: 20px;
}

.sec4-cont-lft-top-bx p {
    font-size: 13px;
    line-height: 17px;
}

.sec4-cont-lft-btm-bx {
    width: 160px;
    height: fit-content;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    position: absolute;
    bottom: 140px;
    right: -40px;
    background: #fff;
    z-index: 2;
    padding: 15px;
}

.sec4-cont-lft-top-bx h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.sec4-cont-lft-btm-bx h3 {
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 600;
}

.sec4-cont-lft-btm-bx.inmbl h3 {
    font-size: 15px;
}

.sec4-cont-lft-btm-bx.inmbl p {
    font-size: 14px;
    line-height: 17px;
}

.sec4-cont-lft-btm-bx.inmbl {
    width: 180px;
}

.sec4-cont .row {
    margin: 80px 0;
}

.sec4-bgln {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: bottom;
    height: 380px;
    opacity: 0.6;
}


:root {
    --bg: #FFFFFF;
    --card: #F7F8FA;
    --ink: #1B1D28;
    --ink-soft: #6B7080;
    --accent: #4F6EF7;
    --accent-soft: #E8ECFE;
    --border: #ECEDF2;
}

.sec5 {
    padding: 0 0 80px 0;
}

.sec5-head {
    text-align: center;
    margin-bottom: 3rem;
}

.sec5-title {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    font-weight: 600;
}

.sec5-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7080;
    max-width: 630px;
    margin: 0 auto;
}

.sec5-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sec5-card {
    background: #F7F8FA;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sec5-quote-icon {
    color: #0b2490;
}

.sec5-quote {
    font-size: 14.5px;
    line-height: 1.75;
    color: #000000;
}

.sec5-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 0.5rem;
    border-top: 1px solid #ECEDF2;
}

.sec5-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #E8ECFE;
    color: #4F6EF7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.sec5-who {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sec5-name h3 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.sec5-role {
    font-size: 12.5px;
    color: #6B7080;
}

@media (max-width: 640px) {
    .sec5-grid {
        grid-template-columns: 1fr;
    }
}


.sec6 {
    margin: 0 30px 80px 30px;
    background:
        radial-gradient(ellipse at 50% 0%, #2A3B8F 0%, transparent 60%),
        linear-gradient(180deg, #141B44, #0A0F2C);
    border-radius: 24px;
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sec6-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sec6-star {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.7;
}

.sec6-content {
    position: relative;
    z-index: 2;
}

.sec6-heading {
    color: #fff;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1rem;
}

.sec6-subtitle {
    color: #AEB4D6;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 70ch;
    margin: 0 auto 2.2rem;
}

.sec6-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 1.1rem;
}

.sec6-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    padding: 13px 18px;
    border-radius: 100px;
    width: 280px;
    outline: none;
}

.sec6-input::placeholder {
    color: #AEB4D6;
}

.sec6-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.sec6-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid #fff;
    color: #0A0F2C;
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 100px;
    cursor: pointer;
}

.sec6-btn:hover {
    background: #E6E8F7;
}

.sec6-fine {
    color: #AEB4D6;
    font-size: 12.5px;
    margin: 0;
}

.sec6-fine a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width:600px) {
    .sec6 {
        padding: 3.2rem 1.4rem;
    }
}

.abt-mn-cont-blr-rnd {
    width: 75%;
    height: 70%;
    background-color: #6f55bd96;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
}


.abut-fl-striped {
    background: #FFFFFF;
}

.abut-fl-hero {
    padding: 190px 6vw 50px;
    border-bottom: 2px solid #4C6EF5;
}

.abut-fl-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #5B1A45;
    letter-spacing: 0.01em;
}

.abut-fl-hero h1 span {
    font-weight: 500;
    color: #7C2D5C;
}

.abut-fl-breadcrumb {
    margin-top: 10px;
    font-size: 12.5px;
    color: #807A85;
    letter-spacing: 0.03em;
}

.abut-fl-content-sec {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.abut-fl-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7C2D5C;
    margin-bottom: 14px;
}

.abut-fl-text-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #2B2530;
    /* max-width:11ch; */
    margin-bottom: 16px;
}

.abut-fl-text-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #807A85;
    /* max-width:46ch; */
}

.abut-fl-media-col {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.abut-fl-img-placeholder {
    background: #DCD3DE;
    border-radius: 4px;
    width: 100%;
    height: 230px;
    flex: 1;
}

.abut-fl-stats {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 6px;
}

.abut-fl-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #7C2D5C;
}

.abut-fl-stat-label {
    font-size: 11px;
    color: #807A85;
    margin-top: 2px;
}

.abut-fl-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
    margin-top: 18px;
}

.abut-fl-feature-item h4 {
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.abut-fl-feature-item p {
    font-size: 12px;
    line-height: 1.7;
    color: #807A85;
}

.abut-fl-logo-strip {
    display: flex;
    gap: 18px;
    justify-content: center;
    padding: 40px 6vw 60px;
    flex-wrap: wrap;
}

.abut-fl-logo-pill {
    background: #F1EEFB;
    border-radius: 8px;
    padding: 16px 34px;
    font-size: 12.5px;
    color: #807A85;
    font-weight: 500;
}

@media (max-width:900px) {
    .abut-fl-content-sec {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .abut-fl-media-col {
        flex-direction: column;
    }
}

.page-hdr {
    height: 280px;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: end;
    /* border-radius: 0 0 90px 90px; */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.page-hdr-cont h2 span {
    font-family: Inter-Regular;
    font-size: 30px;
}

.page-hdr-cont h2 {
    font-family: Inter-Bold;
    font-size: 34px;
    /* text-transform: uppercase; */
}

.page-hdr-cont {
    margin-bottom: 50px;

}

.pg-brd-crmb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-hdr-cont h3 {
    font-size: 14px;
    color: #000;
}

.get-strt p {
    font-size: 13px;
    padding: 10px 30px;
    border: 1px solid #d5d5d5;
    border-radius: 30px;
    color: #000;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 600;

}

.get-strt {
    margin: 10px auto;
    width: 100%;
}

.gt-strt-bg p {
    /* background-color: #2a78d6; */
    background: linear-gradient(to bottom, #8D63A8, #400069);
    color: #fff;
    border: 1px solid #2a78d6;
}


.fas-card.basic .fas-icon {
    background: var(--basic-soft);
    color: var(--basic);
}

.fas-card.premium .fas-icon {
    background: var(--premium-soft);
    color: var(--premium);
}

.fas-card.diamond .fas-icon {
    background: var(--diamond-soft);
    color: var(--diamond);
}

.fas-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}
