* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none; 
}

body {
    font-family: "Poppins", system-ui, -apple-system, sans-serif;
    background: #f5f9ef;           
    color: #1a1a1a;
    overflow-x: hidden;
}

.line{
    display:block;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 15px;
    background: transparent;
    transition: padding 0.3s ease;
}
 
.navbar.scrolled {
    padding: 15px 15px;
    background: rgba(255, 255, 255, 0.02);
}
 
.nav-border-container {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(90, 73, 248, 0.12);
    border-radius: 60px;          
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
 
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    min-height: 60px;
    background: #f8faf2;
    border-radius: 999px;
    border: 2px solid white;
    gap: 20px;
    transition: all 0.3s ease;
}
 

 
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: #1f2937;
    flex-shrink: 0;
}

.logo a{
    display: flex;
    align-items: center;
    line-height: 0;

}
 
.logo img {
    width: 148px;
    height: 48px;
    object-fit: contain;
    display: block;
}
 
.logo-highlight {
    color: #5a49f8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}
 
.nav-links a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
    font-size:16px;
    white-space:nowrap;

    padding:5px 10px;
    border-radius:10px;
    transition:all .3s ease;
    border:2px solid transparent;
}


.nav-links a.active,.nav-links a:hover {
    color:#F9FBEF;
    background:#000;
    border:2px solid #5B4FF7;

    box-shadow: 8px 6px 5px rgba(0, 0, 0, 0.2);

    transform:translateY(-1px);
}
 
.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 5px 10px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
    font-size: 15.5px;

    white-space: nowrap;
    flex-shrink: 0;

    color: white;

    border: 2px solid transparent;

    background-image:
        linear-gradient(90deg, #5a49f8, #7c6eff),
        linear-gradient(
            to right,
            rgba(103, 104, 216, 0.95) 0%,
            rgba(120, 108, 172, 0.55) 45%,
            rgba(82, 63, 167, 0.699) 75%
        );

    background-origin: border-box;
    background-clip: padding-box, border-box;

    transition: all 0.3s ease;
}
 
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 73, 248, 0.4);
}
 
.contact-btn:active {
    transform: translateY(0);
}
 
.arrow {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
    padding:5px;
    background:white;
    border-radius:50%;
    color:#5d4cf8;
}
 
.contact-btn:hover .arrow {
    transform: translateX(3px);
}
 

.menu-btn{
    width:42px;
    height:42px;

    display:none;
    align-items:center;
    justify-content:center;

    position:relative;

    background:none;
    border:none;
    cursor:pointer;
}

.menu-btn span{
    position:absolute;

    width:24px;
    height:2px;

    background:#111;
    border-radius:20px;

    transition:0.35s ease;
}

.menu-btn span:nth-child(1){
    transform:translateY(-7px);
}

.menu-btn span:nth-child(2){
    opacity:1;
}

.menu-btn span:nth-child(3){
    transform:translateY(7px);
}

.menu-btn.active span:nth-child(1){
    transform:rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:rotate(-45deg);
}

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 150px 0px 0px 0px;
    background: 
    
        radial-gradient(
            circle at top right,
            rgba(210, 235, 255, 0.45) 0%,
            rgba(210, 235, 255, 0.12) 28%,
            rgba(210, 235, 255, 0) 50%
        ),

        radial-gradient(
            circle at top left,
            rgba(210, 235, 255, 0.45) 0%,
            rgba(210, 235, 255, 0.12) 28%,
            rgba(210, 235, 255, 0) 50%
        ),
        linear-gradient(
            to bottom,
            #f9fbef 0%,
            #e8eeec 100%
        );
    overflow: hidden;
}

.hero-content-main{
    padding: 0 20px;
    text-align: center;
}

.hero-content {
    position: relative;
    order: 1;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
        text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.subheading {
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin:20px auto 20px;
}


.buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 104px;
    text-decoration: none;
    transition: 0.35s ease;
    white-space: nowrap;

}


.btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.35s ease;
    background:
        radial-gradient(
            ellipse at top center,
            rgba(255, 255, 255, 0.281) 0%,
            rgba(255, 255, 255, 0.199) 10%,
            transparent 40%
        ),
        linear-gradient(
            90deg,
            #6758F7 0%,
            #5B4FF7 45%,
            #5547F3 100%
        );

    color: #d7d7d7;
    padding: 10px 20px;
    border-radius: 104px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.12),
        0 0 60px rgb(149 147 161 / 49%);
}

.btn-inner .text {
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F2F0FF 20%,
        #D8D2FF 65%,
        #A299F9 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.btn-outline {
    padding: 10px 20px;
    color: #4D4D4D;
    font-size: 18px;
    font-weight: 500;
    gap: 5px;
     border: 1px solid transparent;
    background: #ebefea;
    background-image:
        linear-gradient(#ebefea, #ebefea),
        linear-gradient(
            to right,
            #7d7da775 0%,
            #7678A23D 30%,
            rgba(133, 115, 115, 0.14) 70%
        );

    background-origin: border-box;
    background-clip: padding-box, border-box;

    backdrop-filter: blur(12px);
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-outline:hover,.btn-inner:hover {
    transform: translateY(-5px);
}

.calendar-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.calendar-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-image {
    position: relative;
    order: 2;
    width: 100%;
    margin: 0;
    line-height: 0;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.hero-image::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;

    width: 100%;
    height: 75px;

    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 20%,
        rgba(255,255,255,0.55) 45%,
        rgba(255,255,255,0.88) 75%,
        #ffffff 100%
    );
}

.start-section::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;

    width: 100%;
    height: 75px;

    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 20%,
        rgba(255,255,255,0.55) 45%,
        rgba(255,255,255,0.88) 75%,
        #ffffff 100%
    );
}

.black-semibold{
    color:#000000;
    font-weight:600;
    font-size: 56px;
    line-height:1.0;
    min-height: 112px;
}

.future-section{
    padding:60px;
    background:#f4f4f4;
}

.future-container{
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:50px;
    align-items:stretch;
}


.future-left{
    flex: 1;
    display:flex;
    flex-direction:column;
    justify-content:center;

    height:auto;
}

.future-left h2,.content-column h2{
    font-size:48px;
    line-height:1.2;
    color:#3F3F3F;
    margin-bottom:24px;
    font-weight:700;
}

.future-left p{
    font-size:18px;
    line-height:1.8;
    color:#4D4D4D;
    max-width:620px;
    margin-bottom:38px;
}

.common-p{
        font-size:18px;
    line-height:1.8;
    color:#4D4D4D;
    max-width:620px;
    margin-bottom:38px;
}


.future-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-dark,
.btn-light{
    padding:16px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
    font-size:16px;
}

.btn-dark{
    background:#0f172a;
    color:#fff;
}

.btn-dark:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,0.18);
}

.btn-light{
    border:1.5px solid #5b4bff;
    color:#5b4bff;
    background:#fff;
}

.btn-light:hover{
    background:#5b4bff;
    color:#fff;
    transform:translateY(-3px);
}

.future-right{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.info-card{
    display:flex;
    align-items:flex-start;
    gap:18px;

    padding:22px;
    border-radius:18px;

    transition:0.35s ease;

    cursor:default;
}

.info-card.lang:hover{
    background:#fff;
    color: #3F3F3F;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);
    transform:translateY(-4px);
}

.info-card:hover{
    background:#fff;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);
    transform:translateY(-4px);
}

.info-card.lang:hover h4,.info-card.lang:hover p{
    color: #3F3F3F;
}

.icon-box{
    width:65px;
    height:65px;

    min-width:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1.5px solid #c8c2ff;
    border-radius:12px;

    color:#5b4bff;
    font-size:22px;

    background:#f8f7ff;
}

.info-card h4{
    font-size:20px;
    color:#3F3F3F;
    margin-bottom:8px;
}

.info-card p{
    color:#4D4D4D;
    line-height:1.7;
    font-size:15px;
}

.info-card.lang h4{
    color:#fff;
}

.info-card.lang p{
    color:#DAE7FB;
}

.info-card.agent h4{
    color:#fff;
}

.info-card.agent p{
    color:#7C97C0;
}

.info-card.agent:hover h4 {
    color: #3B3B3B; 
}

.info-card.agent:hover p {
    color: #3F3F3F; 
}

.process-section{
    background-color: #fff;
    padding:60px;
}

.process-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    margin-bottom:80px;
}

.process-heading h2{
    font-size:48px;
    line-height:1.2;
    color:#3F3F3F;
    font-weight:700;
}

.process-heading h2 span{
    color:#5b4bff;
}

.process-text{
    max-width:420px;
    font-size:20px;
    line-height:1.8;
    color:#4D4D4D;
    margin-top:45px;
}

.steps-wrapper{
    display:flex;
    gap:0;
    width:100%;
}



.steps-slider{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}

.steps-slider::-webkit-scrollbar{
    height:6px;
}

.steps-slider::-webkit-scrollbar-track{
    background:#e5e5e5;
    border-radius:20px;
}

.steps-slider::-webkit-scrollbar-thumb{
    background:#5A49F8;
    border-radius:20px;
}

.steps-wrapper{
    display:flex;
    width:100%;
}

.step-card{
    flex:1;
    justify-content:space-between;
    padding:30px 20px;
    border-right:1px solid #e6e6e6;

    display:flex;
    align-items:flex-end;
    gap:24px;

    transition:
        background-color .3s ease,
        transform .4s cubic-bezier(.22,1,.36,1);
}

.step-card.active{
    transform: translateY(-5px);
}

.step-card:last-child{
    border-right:none;
}

.step-card:nth-child(n){
    border-top:none;
}

.step-info{
    flex-shrink:0;
}

.step-info h1{
    font-size:90px;
    font-weight:600;
    color:#DDD9FF;
    line-height:1;
    margin-bottom:20px;
}

.step-info h3{
    font-size:32px;
    font-weight:600;
    color:#3B3B3B;
    white-space:nowrap;
}

.step-content p{
    min-width:250px;
    font-size:16px;
    color:#4D4D4D;
    line-height:1.5;
}

.slider-progress{
    width:40%;
    height:4px;
    background:#d9d9d9;
    border-radius:50px;
    margin:40px auto 0;
    overflow:hidden;
}

.slider-progress-fill{
    width:0%;
    height:100%;
    background:#5A49F8;
    border-radius:50px;
    transition:width .25s ease;
}


.step-card:first-child{
    border-left:none;
}

.step-info{
    min-width:130px;
}

.step-content{
    opacity:0;
    transform:translateX(20px);
    max-width:0;
    overflow:hidden;

    transition:
        opacity .35s ease,
        transform .35s ease,
        max-width .5s ease;
}

.step-card.active .step-content{
    opacity:1;
    transform:translateX(0);
    max-width:300px;
}

.step-card:hover{
    background:#fafafa;
}
.tech-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 60px;
      background: #fff;
}


.left-content {
    position: relative;
    z-index: 5;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #5b4cf0 0%, #7c5cfa 100%);
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    text-transform: uppercase;
    max-width: fit-content;
}

.left-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #3f3f3f;
    margin-bottom: 24px;
    animation: slideInUp 0.8s ease-out 0.1s both;
    letter-spacing: -0.5px;
}

.left-content h2 span {
    background: linear-gradient(135deg, #5b4cf0 0%, #7c5cfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.left-content > .subtitle {
    font-size: 20px;
    line-height: 1.4;
    color: #4D4D4D;
    margin-bottom: 32px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}
 
.tech-details {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #d9d9d9;
  border-radius: 40px;
  padding: 14px 22px;
  width: fit-content;
  background: #fff;
}

.tech-details img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.tech-details span {
  font-size: 16px;
  color: #555;
}
 
 
.tech-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden; 
}

.curve-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden; /* ensure strokes don't create extra scroll */
}

.curve-line path {
fill: none;
stroke: #e5e7eb;
stroke-width: 2;
stroke-linecap: round;
}
.green-dot {
width: 8px;
height: 8px;
background: #009E5A;
border-radius: 50%;
flex-shrink: 0;
}

    .curve-wrapper,
.right,
.process-section {
  overflow: visible;
}

.center-icon {
    position: absolute;
    width: 130px;
    height: 130px;
    left: 45%;
    top: 48%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


.center-icon img {
    width: 100%;
    height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 2;
        animation: floatUpDown 1s ease-in-out infinite;
        will-change: transform;
    }

    @keyframes floatUpDown {
        0% {
            transform: translateY(-6px);
        }
        50% {
            transform: translateY(8px);
        }
        100% {
            transform: translateY(-6px);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .center-icon img {
            animation: none !important;
            transform: none !important;
        }
    }

.icons-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}


.tech-icon:hover::before {
    opacity: 0.6;
}

.tech-icon.active {
    width: 120px ;
    height: 120px ;
    z-index: 5;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.2);
}

.tech-icon.active img {
    width: 65px;
    height: 65px;
}

@keyframes moveAlongCurve {
    0% {
    opacity: 1;
    }
    100% {
    opacity: 0;
    }
}

.footer-section {
position: relative;
background: #0a0a1f;
color: white;
overflow: hidden;
padding: 60px 60px 30px;
}

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

.bg-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 50px 0px 0px 0px;
}

.contact-links{
    margin-top: 10px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin: 40px 0px;
}

.footer-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid #5948F7;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 15px;
}

.footer-icon-box:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-2px);
}

.social-icons img ,
.footer-icon-box img,
.footer-icon-box svg {
    width: 22px;
    height: 22px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.company-logo {
    height: 45px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6366f1;
    margin: 0;
}

.links-column div {
    
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li {
    margin-bottom: 12px;
}

.links-column a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s;
}

.links-column a:hover {
    color: white;
    padding-left: 4px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    margin-bottom: 12px;
    text-decoration: none;
}

.social-icons {
    display: flex;
    margin-top: 30px;
    gap:10px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid #5948F7;
    font-size: 0.95rem;
}

.bottom-links a {
    color: #94a3b8;
    text-decoration: none;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-line {
    display: inline-block;
    margin-bottom: 5px;
    width: 20px;
    height: 3px;
    background: #5A49F8;
    border-radius: 2px;
}

.top-badge {
    display: inline-block;
    background: #5A49F81A;
    border: 1px solid #5A49F875;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 20px;
    margin-bottom: 20px;
}

.top-badge-bg{
        display: inline-block;
    border: 1px solid #5A49F8;
    background: #161c3f;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.top-badge-bg-fill{
        display: inline-block;
    border: 1px solid #5A49F8;
    background: #5A49F8;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #fff;
}
.main-heading {
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight,.future-left h2 span {
    color: #5A49F8;
}

.subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.button-group {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.cta-button {
    background: #5A49F8;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap:5px;
    transition: all 0.35s ease;
}

.footer-btn {
    background: #5A49F81F;
    color: white;
    border: 1px solid #5A49F8;
    padding: 15px 30px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;

}
.footer-btn:hover,.grid-box:hover{
    transform: translateY(-5px);
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.solutions-section {
    background: #0f172a;
    color: white;
    padding: 60px;
}

.solutions-content {

    text-align: center;
}

.section-heading {
        font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: #fff;
}

.section-subtitle {
    font-size: 20px;
    color: #5a5e63;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.tab-btn-dark {
    background: transparent;
    border: 1px solid #334155;
    color: #4D4D4D;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid #AEAEAE4D;
    color: #AEAEAE;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
}

.tab-btn.ui{
    color:#E3E3E3;
    border-color: #E3E3E3;
}

.tab-btn:hover {
    border-color: #6366f1;
    color:#fff;
}

.tab-btn-dark:hover{
    border-color: #6366f1;
    color:#4D4D4D;
}

.tab-btn.active, .tab-btn-dark.active {
    background: #5A49F8;
    border: none;
    color: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.solution-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s ease;
    height: 100%;
}

.solution-card:hover, .ai-feature-card:hover {
    border-color: #6366f1;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: white;
}

.solution-card p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 41, 59, 0.8);
    color: #6366f1;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    font-size: 1rem;
    max-width: fit-content;
}

.learn-more-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    color: #818cf8;
    transform: translateX(6px);
}

.learn-more-btn .arrow {
    background: transparent;
}

.learn-more-btn:hover .arrow {
    transform: translateX(4px);
}

.projects-section {
    background: #f6f6f6;
    color: #000;
    padding: 60px;
}

.projects-content {
   text-align: center;
}

.tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 50px 0;
}

.project-row{
    display:grid;
    grid-template-columns:70px 1fr 1fr;
    min-height:420px;
    border-top:1px solid #d8d8d8;
    border-bottom:1px solid #d8d8d8;
    margin-top: 5px;
}

.project-number{
    background:#0b1325;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:25px;
}

.project-number span{
    writing-mode:vertical-rl;
    color:#6d63ff;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
}

.project-content{
    padding:60px;
    border-right:1px solid #d8d8d8;
    text-align: left;
    background: white;
}

.project-category{
    font-size:14px;
    color:#5d52ff;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
}

.project-category-dot{
    width:8px;
    height:8px;
    flex:0 0 8px;
    border-radius:50%;
    background:#5d52ff;
}

.project-content h2{
    font-size:36px;
    line-height:1.2;
    margin-top:18px;
    margin-bottom:20px;
    font-weight:600;
    color:#3F3F3F;
}

.project-content p{
    font-size:16px;
    line-height:1.8;
    color:#4D4D4D;
    max-width:550px;
    margin-bottom:30px;
}

.learn-more-btn-project{
    display: inline-block;
    color:#726666;
    text-decoration:none;
    transition: 0.3s;
}

.tech-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;
}

.tech-tags span{
    border:1px solid #5d52ff;
    color:#5d52ff;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:500;
    transition: all 0.35s ease;
}

.learn-more-btn:hover{
    color:#5d52ff;
}

.project-grid{
    padding:40px 30px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-content:center;
    background:#E6E6E6;

}

.grid-box{
    background:#fff;
    border-radius:16px;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition: 0.3s;
}

.grid-box h3{
    color:#5d52ff;
    font-size:30px;
    font-weight:600;
    margin-bottom:10px;
}

.grid-box p{
    color:#777;
    font-size:15px;
}

.featured-project-row{
    width:100%;
    display:grid;
    grid-template-columns:60px 1fr;
    background:#07122b;
    border-radius:0;
    overflow:hidden;
    margin-bottom: 5px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28), 0 16px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-project-row[data-project-id="wirepoint"]{
    border-radius:20px 0px 0px 0px;
}

.featured-project-number{
    background:linear-gradient(180deg,#6d63ff,#5a45ff);
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:20px;
}

.featured-project-number span{
    writing-mode:vertical-rl;
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
}

.featured-project-content{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    padding:55px 50px;
    align-items:center;
}

.featured-category{
    color:#fff;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
}

.featured-category-dot{
    width:8px;
    height:8px;
    flex:0 0 8px;
    border-radius:50%;
    background:#ffffff;
}
.featured-left {
    text-align: left;
}

.featured-left h2{
    color:#fff;
    font-size:36px;
    font-weight:600;
    margin-bottom:22px;
}

.featured-left p{
    color:#fff;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
    max-width:650px;
}

.featured-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:35px;
}

.featured-tags span{
    background:#F0EFFE;
    color:#5A49F8;
    padding:10px 22px;
    border-radius:42px;
    font-size:14px;
    font-weight:500;
    border: 1px solid #5A49F8;
    transition: all 0.35s ease;
}

.featured-tags span:hover,.tech-tags span:hover {
    transform: translateY(-5px);
}

.featured-link{
    display: inline-block; 
    color:#fff;
    text-decoration:none;
    font-size:24px;
    font-weight:500;
    transition: 0.3s;
}

.featured-link:hover,.learn-more-btn-project:hover{
    transform: translateY(-6px);
}

.featured-image-card{
    position: relative;
    border-radius:24px;
    overflow: visible;
}

.featured-image-card .featured-image-blur{
    position: absolute;
    inset: 0;
    width: 70%;
    height: 70%;
    left: 30%;
    top: 35%;
    object-fit: cover;
    filter: blur(5px) brightness(0.92) saturate(1.05);
    opacity: 0.5;
    transform: translate(0, 6px) scale(1.12);
    z-index: 1;
}

.featured-image-card img:not(.featured-image-blur){
    position: relative;
    z-index: 2;
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:
      0 50px 120px rgba(0, 0, 0, 0.32),
      0 24px 60px rgba(0, 0, 0, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.04);
}

.featured-bottom{
    margin-top:135px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.featured-bottom span{
    color:#fff;
    font-size:26px;
    font-weight:500;
}

.star{
    font-size:28px;
}

.view-more-container{
    width:100%;
    display:flex;
    justify-content:flex-end;
    margin:50px 0 0 0;
}

.view-more-btn{
    background:#07122b;
    color:#fff;
    text-decoration:none;
    border:0;
    cursor:pointer;
    padding:15px 30px;
    border-radius:15px;
    font-size:20px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:0.3s ease;
}

.common-color{
    color: #3F3F3F !important;
}

.projects-content .project-item[hidden],
.project-filter-empty[hidden] {
    display:none !important;
}

.project-list .project-item {
    animation: project-card-enter 0.45s ease both;
}

.project-list {
    view-transition-name: project-list;
}

::view-transition-old(project-list) {
    animation: project-list-out 0.22s ease both;
}

::view-transition-new(project-list) {
    animation: project-list-in 0.42s ease both;
}

@keyframes project-list-out {
    to { opacity: 0; transform: translateY(-8px); }
}

@keyframes project-list-in {
    from { opacity: 0; transform: translateY(12px); }
}

.project-list .project-item:nth-child(2) {
    animation-delay: 0.06s;
}

.project-list .project-item:nth-child(3) {
    animation-delay: 0.12s;
}

.project-list .project-item:nth-child(4) {
    animation-delay: 0.18s;
}

@keyframes project-card-enter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-list .project-item {
        animation: none;
    }
}

.project-filter-empty {
    margin:40px 0 0;
    color:#4D4D4D;
    text-align:center;
}

.view-more-btn:hover{
    transform:translateY(-2px);
}

.mobile-only{
    display: none;
}

.tech-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.other-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card {
    background: #1e2937;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 24px;
    transition: 0.3s;
}

.project-card:hover {
    border-color: #6366f1;
    transform: translateY(-8px);
}

.project-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.tech-tags.small span {
    font-size: 0.8rem;
    padding: 3px 10px;
}

.learn-more-btn.small {
    font-size: 0.95rem;
    padding: 8px 20px;
}

.testimonial-section{
    display:grid;
    grid-template-columns:0.8fr 1fr;
    gap:60px;
    align-items:center;
    padding:60px;
    background:#fff;
}

.testimonial-left{
    max-width:670px;
    text-align:left;
    opacity: 0;
}

.quote-section {
    border-radius: 8px;
}

.quote-section i {
    font-size: 100px;
    color: #5d5dff;             
    line-height: 1;
    display: block;
    margin-bottom: -25px;     
}

.quote-section h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;
    color: #1f2937;
    margin: 0;
    padding: 0;
}

.testimonial-left h3{
    font-size:48px;
    line-height:1.15;
    color:#0F172A;
    font-weight:700;
    margin-left: 17px;
}

.testimonial-card{
    background:linear-gradient(135deg,#5d52ff,#6246ff);
    border-radius:28px;
    padding:35px 40px;
    position:relative;
    overflow:hidden;
    opacity: 0;
}

.testimonial-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.testimonial-top span{
    color:#fff;
    font-size:16px;
    font-weight:600;
}

.testimonial-dots{
    display:flex;
    gap:8px;
}

.testimonial-dots span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:rgba(255,255,255,0.5);
}

.testimonial-dots span.active{
    background:#f6d365;
}

.testimonial-card p{
    color:#fff;
    font-size:22px;
    line-height:1.8;
    font-weight:400;
    margin-bottom:40px;
    text-align: left;
    min-height: 200px;
}

.testimonial-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:16px;
}

.testimonial-author img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-author strong{
    color:#fff;
    font-size:20px;
    font-weight:600;
}

.testimonial-author span{
    color:rgba(255,255,255,0.85);
    font-size:16px;
}

.testimonial-arrows{
    display:flex;
    gap:14px;
}

.arrow-btn{
    width:54px;
    height:54px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    transition:0.3s ease;
}

.arrow-btn:hover{
    background:rgba(255,255,255,0.22);
}
.toggle-wrapper {
    margin: 50px 0px;
}

.services-toggle {
    display: inline-flex;
    background: #fff;
    border-radius: 50px;
}

.toggle-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 140px;
}

.toggle-btn.active {
    background: #0f172a;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toggle-btn:not(.active) {
    background: transparent;
    color: #000;
}

.horizontal-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #334155, transparent);
    margin-top: 25px;
    width: 100%;
}
.services-accordion-section {
    color: white;
}

.accordion-parent {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 8px;
}

.parent-header {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    transition: 0.3s;
}

.parent-text {
    flex: 1;
    min-width: 0;
}

.parent-text h3 {
    font-size: 1.5rem;
    margin: 0 0 8px;
    font-weight: 600;
    color: #3B3B3B;
}

.parent-text p {
    color: #9ca3af;
    margin: 0;
    line-height: 1.4;
}

.arrow-circle {
    width: 48px;
    height: 48px;
    background: #1f2937;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

.arrow-circle i {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.accordion-parent.active .arrow-circle {
    transform: rotate(90deg);
}

.horizontal-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d1d5db, transparent);
    margin: 12px 0;
}


.child-card {
    background: #fff;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.accordion-parent.active .child-card {
    border: 1px solid #ececec;
}

.children-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    padding: 18px 28px;
    position: relative;
    z-index: 1;
}

.children-grid > div {
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background: #fff;
}

.child-item.grid-left-cell::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;
    width: 1px;
    background: #eeeeee;
    pointer-events: none;
    z-index: 4;
}

.child-item.row-separated {
    border-top: 1px solid #e5e5e5;
}

.child-item.layout-full {
    grid-column: 1 / -1;
}

.child-header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: #fff;
}

.parent-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-parent.active .parent-content {
    grid-template-rows: 1fr;
}

.parent-content > .child-card {
    min-height: 0;
    overflow: hidden;
}

.child-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.child-item {
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.3s ease,
        border-radius 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    background: #fff;
    will-change: transform;
}

.child-item.opened {
    grid-column: 1 / -1;
    background: #fff;
    padding: 22px 24px;
}

.child-item.opened::before,
.child-item.opened::after {
    display: none;
}

.child-item.opened .child-header {
    background: transparent;
    padding: 6px 0 22px;
}

.child-item.opened .child-content .cardp{
     color: white;
}
.child-item.opened .child-content li {
    color: #9C9C9C;
}

.expanded-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: #0f172a;
    min-height: 255px;
    padding: clamp(28px, 4vw, 54px);
    border-radius: 13px;
}

.expanded-left h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 14px;
}

.expanded-left p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px 28px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.tech-list li {
    color: #cbd5e1;
    position: relative;

    display: flex;
    align-items: center;

    min-height: 42px;
    padding-left: 56px;
}

.tech-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: #5b4df5;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;
}

.explore-btn {
    border: 1px solid white;
    background: #353c4c;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
}

.stats-card {
    background: linear-gradient(135deg, #5b4df5, #5a3df0);
    border-radius: 13px;
    min-height: 170px;
    padding: 48px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-card h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.stats-card p {
    color: white;
    font-size: 32px;
    margin-top: 10px;
    font-weight: 400;
}

.child-no {
    font-size: 12px;
    font-weight: 600;
    color: #0F172A;
    background: #ECEAFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.child-title {
    font-size: 1rem;
    font-weight: 600;
    color: #4f46e5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.child-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4D4D4D;
    font-size: 14px;
    transition: 0.3s;
    flex-shrink: 0;
}

.child-item.opened .child-arrow {
    background: #5b4df5;
    color: #fff;
}

.child-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;
    padding: 0;
}

.child-content-inner {
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    transform: translateY(-8px);
    transition: transform 0.35s ease;
}

.child-item.opened .child-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.child-item.opened .child-content-inner {
    transform: translateY(0);
}

.child-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.child-content ul {
    padding-left: 18px;
}

.child-content li {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 14px;
}


.tech-visual{
  position:relative;
  width:100%;
  max-width:650px;
  aspect-ratio:1/1;
  margin:auto;
}


.tech-icon{
  position:absolute;

  transform:translate(-50%,-50%);

  border-radius:50%;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.5s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,.12);

  z-index:2;
}

.tech-icon img{
  width:55%;
  height:55%;
  object-fit:contain;
}


.tech-icon.active{
  z-index:5;
}


.node-bg {
    position: absolute;
    width: 310%;
    height: 130%;
    border: 1px solid #E8E8E8;
    border-radius: 120px;
    left: -34%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .4s ease;
    z-index: -1;
}

.tech-icon.active .node-bg{
  opacity:1;
}

@media(max-width:1400px) {

    .node-bg {
        width: 300%;
        left: -30%;
    }

    .menu-btn{
        display:flex;
    }

  
    .contact-btn{
        display:none;
    }

    .nav-links{
        position:fixed;

        top:85px;
        left:50%;

        transform:translateX(-50%) translateY(-20px);

        width:95%;
        background:#fff;

        border-radius:24px;

        padding:30px 20px;

        display:flex;
        flex-direction:column;
        align-items:center;

        gap:25px;

        box-shadow:
            0 20px 40px rgba(0,0,0,0.12);

        opacity:0;
        visibility:hidden;

        transition:0.4s ease;

        z-index:999;
    }


    .nav-links.active{
        opacity:1;
        visibility:visible;

        transform:translateX(-50%) translateY(0);
    }

     .mobile-only{
        display: block;
    }
}

 @media(max-width:1300px) {
     .node-bg {
        width: 290%;
        left: -37%;
    }


     .center-icon{
        height: 108px;
        width: 108px;
     }
}

@media(max-width:1200px) {

    .steps-slider{
        overflow-x:auto;
        overflow-y:hidden;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .steps-slider::-webkit-scrollbar{
        display:none;
    }

    .step-card{
        margin-right:16px;

        padding:24px;
    }

    .step-card.active{
        flex:1.5;
    }

    .step-card:last-child{
        margin-right:20px;
    }


.node-bg {
        width: 320%;
        left: -40%;
    }
} 

@media (max-width: 1130px) {

    .subheading{
        max-width: 100%;
    }

   

    .tech-section {
        grid-template-columns: 1fr;
        gap: 60px;
      }
 
      .left-content h2 {
        font-size: 35px;
      }
 
      .tech-icon {
        width: 62px;
        height: 62px;
      }
 
      .tech-icon img {
        width: 34px;
        height: 34px;
      }

      .center-icon{
        width: 130px;
        height: 130px;
      }
 
      .tech-icon.active {
        width: 90px;
        height: 90px;
      }
 
      .tech-icon.active img {
        width: 48px;
        height: 48px;
      }

    .hero-content h1 {
        font-size:45px;
    }

    .step-card{

        border-top:1px solid #ddd;
    }

    .step-card:nth-child(odd){
        border-left:none;
    }

    .process-heading h2{
        font-size:35px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .subtitle {
        font-size: 15px;
    }

    .section-heading{
        font-size:35px;
    }

}

@media(max-width:1100px){

    .node-bg {
        width: 300%;
        left: -32%;
    }

    .featured-project-content{
        grid-template-columns:1fr;
        gap:40px;
    }

    .featured-left h2{
        font-size:46px;
    }

    .testimonial-section{
        grid-template-columns:1fr;
        gap:40px;
    }

    .testimonial-left h3{
        font-size:48px;
    }

    .future-left h2,.content-column h2{
        font-size:35px;
    }

    .project-row{
        grid-template-columns:60px 1fr;
    }

    .project-number{
        grid-row:1 / 3;
        height:100%;
    }

    .project-grid{
        grid-column:2;
        border-top:1px solid #ddd;
    }

    .project-content{
        border-right:none;
    }

    .project-content h2{
        font-size:34px;
    }
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .children-grid {
        grid-template-columns: 1fr;
        padding: 14px 18px;
    }



}

@media (max-width: 992px) {

    .featured-project {
        grid-template-columns: 1fr;
    }
    .project-image {
        height: 320px;
    }

    .expanded-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
        padding: 22px;

    }
    .child-content,.child-content ul {

        padding: 0px;
    }
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .future-container{
        flex-direction:column;
        gap:50px;
    }

    .future-left p{
        font-size:17px;
    }

    .process-top{
        flex-direction:column;
        gap:25px;
        margin-bottom:50px;
    }

    .process-heading h2{
        font-size:35px;
    }

    .process-text{
        margin-top:0;
        max-width:100%;
    
    }

    .step-card:nth-child(odd){
        border-left:none;
    }

    .step-info {
    min-width: 100px;
}

    .step-card.active{
        padding: 20px 0px 20px 24px;
    }


    .step-card.active .step-content{
        width:auto;
    }

    .project-row{
        grid-template-columns:50px 1fr;
    }

    .project-content{
        padding:35px 25px;
    }

    .project-content h2{
        font-size:28px;
    }

    .project-content p{
        font-size:15px;
    }

    .project-grid{
        padding:15px;
        gap: 15px;
    }

    .grid-box{
        padding:25px;
    }

    .grid-box h3{
        font-size:28px;
    }

    .tech-tags span{
        font-size:13px;
        padding:8px 14px;
    }

    .learn-more-btn{
        font-size:16px;
    }

}

@media(max-width:991px){

    
    .step-card{
       
        padding:20px;
    }

    .step-info h1{
        font-size:50px;
    }

    .step-info h3{
        font-size:22px;
    }

        .center-icon {
        width: 104px;
        height: 104px;
    }

    .why-left h2{
        font-size: 32px;
    }

  .tech-visual{
    max-width:520px;
  }

  .node-bg{
           width: 280%;
        height: 120%;
        left: -25%;
  }


}

@media (max-width:850px){

            .node-bg {
        width: 310%;
        left: -40%;
    }
}

@media (max-width:768px){

            .node-bg {
        width: 320%;
        height: 120%;
        left: -41%;
    }
    

    .children-grid {
        grid-template-columns: 1fr;
    }

    .children-grid::before {
        display: none;
    }

    .children-grid::after {
        display: none;
    }

    .child-item.grid-left-cell::after {
        display: none;
    }

    .child-item::before {
        display: none;
    }

    .child-item.row-separated {
        border-top: 1px solid #e5e5e5;
    }

    .children-grid .child-item + .child-item {
        border-top: 1px solid #e5e5e5;
    }

    .child-item.opened::before,
    .child-item.opened::after {
        display: none;
    }

    .children-grid > div:not(:last-child) {
        border-bottom: 0;
    }

    .expanded-left h3{
        font-size: 20px;
    }

    .tech-list {
        grid-template-columns: 2fr 2fr;
        gap:10px;
        margin: 5px;
    }

    .stats-card {
        padding: 20px;
    }

    .testimonial-left h3{
        font-size:36px;
    }

    .testimonial-card{
        padding:28px 22px;
        border-radius:22px;
    }

    .testimonial-card p{
        font-size:18px;
        line-height:1.7;
        min-height: 245px;
    }

    .testimonial-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

    .testimonial-author strong{
        font-size:18px;
    }

    .testimonial-author span{
        font-size:14px;
    }

    .arrow-btn{
        width:46px;
        height:46px;
        font-size:20px;
    }

    .view-more-btn{
        font-size:15px ;
        padding:10px 20px;
        border-radius:14px;
    }

    .featured-project-row{
        grid-template-columns:45px 1fr;
    }

    .featured-project-content{
        padding:35px 25px;
    }

    .featured-left h2{
        font-size:36px;
    }

    .featured-left p{
        font-size:15px;
    }

    .featured-tags span{
        font-size:13px;
        padding:8px 16px;
    }

    .featured-link{
        font-size:18px;
    }

    .featured-bottom span{
        font-size:20px;
    }

     .other-projects {
        grid-template-columns: 1fr;
    }
    
    .tabs-container {
        justify-content: center;
        gap:5px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .company-info {
        grid-column: span 2;
    }

    .navbar {
        padding: 15px 12px;
    }
 
    .nav-container {
        padding: 0px 15px;
        min-height: 55px;
    }
 
    .logo img {
        width: 120px;
        height: 40px;
    }
 
    .nav-links {
        gap: 25px;
    }
 
    .nav-links a {
        font-size: 14px;
    }
 
    .contact-btn {
        padding: 8px 12px;
        font-size: 13.5px;
    }
 
    .arrow {
        font-size: 16px;
    }


    
    .black-semibold {
        font-size: 50px;
    }

    .btn-inner{
        padding:12px 22px;
        font-size:16px;
        gap:8px;
    }

    .calendar-icon{
        font-size:13px;
    }

    .square{
        width:5px;
        height:5px;
    }

    .future-left p{
        font-size:16px;
        line-height:1.7;
        margin: 0px;
        margin-bottom: 50px;
    }

    .blog-p{
        font-size:16px!important;
    }

    .btn-dark,
    .btn-light{
        padding:14px 24px;
        font-size:15px;
    }

    .info-card{
        padding:18px;
    }

    .info-card h4{
        font-size:18px;
    }

    .process-text{
        line-height:1.5;
    }
    

    .step-card{
        min-height:auto;

        border-left:none !important;
        border-top:1px solid #ddd;

        padding:20px 0;

    }

    .step-card:first-child{
        border-top:none;
    }

    .step-content{
        opacity:0;
        transition:
            max-height 0.5s ease,
            opacity 0.4s ease;
    }

    .step-card.active .step-content{
        max-height:300px;
        opacity:1;
    }

    .step-content p{
        font-size:14px;
    }

 
      .left-content > .subtitle,.tec-warriors-header > .subtitle {
        font-size: 16px !important;
      }
      .section-subtitle{
        font-size: 16px;
      }
      .tech-visual {
        max-width: 400px;
      }

 
      .tech-icon {
        width: 56px;
        height: 56px;
      }
 
      .tech-icon img {
        width: 30px;
        height: 30px;
      }
 
      .tech-icon.active,.center-icon {
        width: 80px;
        height: 80px;
      }
 
      .tech-icon.active img {
        width: 44px;
        height: 44px;
      }
 
      .tag {
        font-size: 11px;
        padding: 8px 16px;
      }

      .top-badge-bg{
        font-size: 11px;
        padding: 8px 16px;
      }

       .top-badge-bg-fill{
        font-size: 11px;
        padding: 8px 16px;
    }

}

@media(max-width:767px){

    .form-card h3 {
        font-size: 24px;
    }


    .form-actions {
        justify-content: stretch;
    }
    .child-content p {
        font-size: 14px;
    }

    .child-content li{
        font-size: 10px;
    }

    .stats-card h2 {
    font-size: 22px;
}

    .explore-btn {
    padding: 6px 18px;
}
    
    .steps-wrapper{
        padding-bottom:10px;
    }

    .step-card{

        margin-right:15px;

        gap:15px;
    }

    .step-info h1{
        font-size:42px;
        margin-bottom:12px;
    }

    .step-info h3{
        font-size:20px;
    }

    .step-content p{
        font-size:14px;
        line-height:1.7;
    }

    .tab-btn,.tab-btn-dark{
        padding:8px 13px;
        font-size:10px;
    }

  .tech-visual{
    max-width:100%;
  }

  .node-bg{
    width: 340%;
        left: -54%;
  }
  
}

@media (max-width: 640px) {

    .step-card
 {
    flex: 0.2;
}

    .step-card.active{
        flex:0.3;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
    }

    .button-group .cta-button,
    .button-group .footer-btn {

        max-width: 350px;
    }

        .grid-box {
        padding: 15px;
    }

    .grid-box h3{
        font-size: 25px;
    }

        .project-content h2 ,.featured-left h2{
        font-size: 18px;
    }

        .project-content p ,.featured-left p{
            font-size: 12px;
        }

            .tech-tags span,.featured-tags span {
                font-size: 10px;
            }


    .project-info,
    .project-card.large {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {

    .future-left p{
        margin-bottom: 26px;
    }

    .future-container {
        gap: 10px;
    }

    .tech-details {
    min-height: 65px;
    }

    .parent-header {
        align-items: flex-start;
        padding: 22px 0;
    }

    .parent-text h3 {
        font-size: 20px;
    }

    .parent-text p {
        font-size: 14px;
    }

    .arrow-circle {
        width: 35px;
        height: 35px;
    }

    .child-header ,.child-item.opened{
        padding: 16px;
    }

    .child-title {
        font-size: 15px;
    }

    .child-no {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .cta-button,.footer-btn{
        font-size:15px;
        padding: 10px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    

    .subtitle{
        font-size: 16px;
        line-height:1.5;
    }


    .hero-image img {
        max-width: 100%;
    }
    .black-semibold {
        font-size: 36px;
        min-height: 72px;

    }
}

@media(max-width:550px) {
         .node-bg {
        width: 275%;
        left: -25%;
    }
}

@media (max-height: 500px) {
    .nav-links.active {
        max-height: 70vh;
        overflow-y: auto;
    }
 
    .navbar {
        padding: 8px 15px;
    }
 
    .nav-container {
        min-height: 45px;
    }
}

@media (max-width:480px){

    .grid-box p {
        font-size: 12px;
    }

    .grid-box h3{
        font-size: 20px;
    }

    .hero-section {
        padding: 150px 0px 0px 0px;
    }

    .calendar-icon,
    .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .cards-grid{
            grid-template-columns: 1fr;
    }

    .solution-card {
    padding: 30px 20px;

}


.card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.solution-card p {
    line-height: 1.4;
    font-size: 15px;
    margin-bottom: 20px;
}

    .curve-line{
        width: 105% !important;
    }
      .project-image {
        height: 260px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .tech-section {
        padding: 24px 12px;
        gap: 32px;
      }
 
      .future-content > section > h2,.card h2, .card h3,.left-content h2,.section-heading,.process-heading h2,.fun-title,.hero-content h1,.why-left h2,.faq-left h2,.future-left h2{
        font-size: 25px !important;
      }

 
      .tech-visual {
        max-width: 320px;
      }
 
      .center-icon,.tech-icon.active {
        width: 70px !important;
        height: 70px !important;
      }
 
      .tech-icon {
        width: 50px;
        height: 50px;
      }
 
      .tech-icon img {
        width: 26px;
        height: 26px;
      }
 
      .tech-icon.active {
        width: 70px;
        height: 70px;
      }
 
      .tech-icon.active img {
        width: 38px;
        height: 38px;
      }

    .hero-image::after {
    bottom: -16px;
    }

    .start-section::after {
    bottom: -10px;
    }

    .btn-inner,.btn-outline{
        padding:8px 14px;
        font-size:13px;
        gap:5px;
    }

    .calendar-icon{
        font-size:12px;
    }


    .future-left h2,.content-column h2{
        font-size:25px;
    }

    .section-heading{
        font-size: 24px;
    }

    .top-badge-bg-fill{
        font-size: 11px;
        padding: 8px 16px;
    }
    .future-buttons{
        flex-direction:column;
    }

    .btn-dark,
    .btn-light{
        width:100%;
        text-align:center;
    }

    .no-pad{
        padding: 0px !important;
    }

    .info-card{
        gap:14px;
        padding:16px;
    }

    .icon-box{
        width:44px;
        height:44px;
        min-width:44px;
        font-size:18px;
    }

    .icon-box img{
        width:25px;
        height: 25px;
    }

    .info-card h4{
        font-size:16px;
    }

    .info-card p{
        font-size:14px;
    }

    .navbar {
        padding: 10px 8px;
    }
 
    .nav-border-container {
        border-radius: 40px;
    }
 
    .nav-container {
        padding: 0px 10px;
        min-height: 55px;
        border-radius: 40px;
    }
 
    .logo img {
        width: 110px;
        height: 30px;
    }
 
    .contact-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
 
    .arrow {
        font-size: 15px;
        margin-left: 4px;
    }
 
    .menu-btn {
        gap: 5px;
    }
 
    .menu-btn span {
        width: 22px;
        height: 2.5px;
    }
 
    .nav-links {
        top: 65px;
        
        padding: 15px;
    }
 
    .nav-links a {
        font-size: 14px;
    }

    .tech-details span{
        font-size:10px;
    }
}

@media(max-width:450px) {

    .quote-section i {
    font-size: 70px;
    }

    .testimonial-left h3{
        font-size: 28px;
        margin-top: 10px;
        margin-left: 10px;
    }

    .showcase-link{
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
             .node-bg {
        width: 320%;
        left: -40%;
    }

}

@media(max-width:400px) {
         .node-bg {
        width: 316%;
        left: -44%;
    }
}

@media (max-width:380px) {


        .black-semibold {
        font-size: 32px;
    }

    .subheading{
        font-size: 14px;
    }

    .hero-stats{
        gap:10px
    }

        .section-heading {
        font-size: 23px;
        }

        .tech-list li {
        padding-left: 40PX;
        }


}

@media (prefers-reduced-motion: reduce) {
    .navbar,
    .nav-border-container,
    .nav-container,
    .nav-links,
    .contact-btn,
    .menu-btn span {
        transition: none;
    }
}
 
@media (hover: none) and (pointer: coarse) {
    .contact-btn {
        padding: 10px 15px;
    }
 
}
 
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .menu-btn span {
        border-radius: 1px;
    }
}

.stagger > * {
    opacity: 0;

}

.stagger > * {
    opacity: 0;
    will-change: transform, opacity;
}

.stagger > *.show {
    animation: staggerFadeUp 1s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}

.stagger > *:nth-child(1).show { animation-delay: 0ms; }
.stagger > *:nth-child(2).show { animation-delay: 110ms; }
.stagger > *:nth-child(3).show { animation-delay: 220ms; }
.stagger > *:nth-child(4).show { animation-delay: 330ms; }
.stagger > *:nth-child(5).show { animation-delay: 440ms; }
.stagger > *:nth-child(6).show { animation-delay: 550ms; }
.stagger > *:nth-child(n+7).show { animation-delay: 660ms; }

section:not(.testimonial-section) {
    opacity: 0;
    will-change: transform, opacity;
}

section.show {
    animation: staggerFadeUp 1.3s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}

@keyframes staggerFadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .stagger > *,
    section:not(.testimonial-section) {
        opacity: 1;
    }

    .stagger > *.show,
    section.show {
        animation: none;
        transform: none;
    }
}

.screen-row {
    opacity: 0;
    transform: translateX(-60px);
    will-change: transform, opacity;
}

.screen-row.reverse {
    transform: translateX(60px);
}

.screen-row.show {
    animation: rowSlideInLeft 1.2s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}

.screen-row.reverse.show {
    animation: rowSlideInRight 1.2s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}

@keyframes rowSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rowSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .screen-row,
    .screen-row.reverse {
        opacity: 1;
        transform: none;
    }
    .screen-row.show,
    .screen-row.reverse.show {
        animation: none;
    }
}