/** SCOOTRIG COUNTER CSS START **/

.scootrig-spots-wrap{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:18px;
}

/* Counter container */
.counter,
.scootrig-live-counter{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    width:100%;
}

/* Individual digit */
.digit{
    width:120px;
    height:160px;
    border-radius:12px;
    overflow:hidden;
    background:#333;
    position:relative;

    box-shadow:
        0 15px 30px rgba(0,0,0,.4),
        inset 0 2px rgba(255,255,255,.08);
}

/* Top and bottom halves */
.half{
    height:50%;
    display:flex;
    justify-content:center;
    overflow:hidden;
    position:relative;
}

.top{
    align-items:flex-end;
    background:linear-gradient(#575757,#343434);
}

.bottom{
    align-items:flex-start;
    background:linear-gradient(#303030,#191919);
}

/* Digit number */
.half span{
    position:absolute;
    font-size:115px;
    font-weight:700;
    color:#fff;
    line-height:1;
}

.top span{
    top:22px;
}

.bottom span{
    top:-56px;
}

/* Middle flip line */
.digit:after{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:100%;
    height:2px;
    background:#111;
}

/* Availability text */
.scootrig-spots-text{
    width:100%;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:5px;
}

.scootrig-spots-text strong{
    display:block;
    margin:0;
    padding:0;
    color:#6bb522;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
}

.scootrig-spots-text span{
    display:block;
    margin:0;
    padding:0;

    color:#d0d0d0;
    font-size:17px;
    font-weight:400;
    line-height:1.4;
    letter-spacing:.2px;
}

/* Tablet */
@media(max-width:1024px){

    .digit{
        width:105px;
        height:140px;
    }

    .half span{
        font-size:100px;
    }

    .top span{
        top:20px;
    }

    .bottom span{
        top:-48px;
    }

    .scootrig-spots-text strong{
        font-size:22px;
    }

    .scootrig-spots-text span{
        font-size:16px;
    }
}

/* Mobile */
@media(max-width:767px){

    .scootrig-spots-wrap{
        gap:14px;
    }

    .counter,
    .scootrig-live-counter{
        gap:8px;
    }

    .digit{
        width:78px;
        height:105px;
        border-radius:8px;
    }

    .half span{
        font-size:76px;
    }

    .top span{
        top:14px;
    }

    .bottom span{
        top:-37px;
    }

    .digit:after{
        height:1px;
    }

    .scootrig-spots-text{
        gap:3px;
    }

    .scootrig-spots-text strong{
        font-size:20px;
    }

    .scootrig-spots-text span{
        font-size:14px;
    }
}

/** SCOOTRIG COUNTER CSS END **/

/*=================================
        PROCESS SECTION
==================================*/

.sr-process-section{
    padding:100px 20px;
    overflow:hidden;
}

.sr-process-container{

    max-width:1400px;
    margin:auto;

    display:grid;

    grid-template-columns:1fr 380px 1fr;

    gap:80px 60px;

    align-items:center;

}

/*==========================
        LOGO
==========================*/

.sr-process-logo{

    grid-column:2;
    grid-row:1 / span 2;

    width:380px;

    margin:auto;

    display:flex;
    justify-content:center;
    align-items:center;

}

.sr-process-logo img{

    width:100%;
    display:block;

}

/*==========================
        CARDS
==========================*/

.sr-process-item{

    display:flex;
    align-items:center;
    gap:24px;

    width:100%;
    min-width:0;

}

.sr-process-content{

    flex:1;
    min-width:0;

}

.sr-process-content h3{

    margin:0;
    font-size:30px;
    line-height:1.15;
    color:#000;
    font-weight: 700 !important;
    font-family: 'Montserrat';
}

.sr-process-content p{

    margin-top:25px;
    color:#000;
    font-size:18px;
    line-height:1.2;
    font-family: 'Montserrat';

}

.step-number{
    display:block;
    margin-bottom:10px;
    font-size:30px;
    font-weight:700;
    color:#000;
    font-family: 'Montserrat';
}

.sr-process-icon{
    width:110px;
    height:110px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex:0 0 110px;
    border-radius:24px;
}
.sr-process-icon i{
    font-size:48px;
    line-height:1;
}
.sr-process-icon.green{
    background:#76c61b;
    color:#fff;
}

.sr-process-icon.black{
    background:#111;
    color:#fff;
}
/*==========================
      DESKTOP POSITIONS
==========================*/

.step-1{

    grid-column:1;
    grid-row:1;

}

.step-2{

    grid-column:3;
    grid-row:1;
    flex-direction:row-reverse;

}

.step-3{

    grid-column:1;
    grid-row:2;

}

.step-4{

    grid-column:3;
    grid-row:2;
    flex-direction:row-reverse;

}

.step-2 .sr-process-content,
.step-4 .sr-process-content{

    text-align:right;

}

/*==========================
        TABLET
==========================*/

@media(max-width:1024px){

.sr-process-container{

grid-template-columns:1fr 1fr;

gap:50px 30px;

}

.sr-process-logo{

grid-column:1 / -1;
grid-row:1;

width:250px;

}

.step-1{

grid-column:1;
grid-row:2;

}

.step-2{

grid-column:2;
grid-row:2;

}

.step-3{

grid-column:1;
grid-row:3;

}

.step-4{

grid-column:2;
grid-row:3;

}

.sr-process-item{

flex-direction:column;

text-align:center;

}

.step-2,
.step-4{

flex-direction:column;

}

.step-2 .sr-process-content,
.step-4 .sr-process-content{

text-align:center;

}

.sr-process-content p{

max-width:300px;

margin:auto;
margin-top:15px;

}

}

/*==========================
        MOBILE
==========================*/

@media(max-width:767px){

.sr-process-container{

grid-template-columns:1fr;

gap:45px;

}

.sr-process-logo{

grid-column:1;
grid-row:1;

width:220px;

}

.step-1{

grid-column:1;
grid-row:2;

}

.step-2{

grid-column:1;
grid-row:3;

}

.step-3{

grid-column:1;
grid-row:4;

}

.step-4{

grid-column:1;
grid-row:5;

}

.sr-process-item{

flex-direction:column;

text-align:center;

}

.step-2,
.step-4{

flex-direction:column;

}

.step-2 .sr-process-content,
.step-4 .sr-process-content{

text-align:center;

}

.sr-process-content h3{
font-size:30px;

}

.sr-process-content p{
font-size:17px;

}

}

/** process css end */

/** tabs css start here */

.cards-slider{
    overflow:hidden;
    width:100%;
}

.cards-track{
    display:flex;
    gap:40px;
    align-items:flex-start;
    transition:transform .7s ease;
    will-change:transform;
}

.tab-card{
    flex:0 0 50%;
    opacity:.3;
    transform:scale(.88);
    transition:.5s;
}

.tab-card.active{
    opacity:1;
    transform:scale(1);
}

.tech-tabs{

    display:flex;
    justify-content:center;
    align-items:center;
    width:max-content;
    margin:0 auto 60px;
    padding:10px;
    border-radius:999px;
    background:#f4f4f4;
    font-family: 'Montserrat', sans-serif;
}
.tech-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    padding:8px;
    border-radius:999px;
    background:#f2f2f2;
}

.tab-btn{
    padding:14px 28px;
    border:none !important;
    border-radius:999px;
    background:#fff;
    color:#000;
    font-size:16px;
    font-weight:600;
    font-family:'Montserrat',sans-serif;
    cursor:pointer;
    transition:all .3s ease;
}

/* Hover */
.tab-btn:hover{
    background:#000;
    color:#fff;
}

/* Active */
.tab-btn.active{
    background:#000;
    color:#fff;
    border-color:#000;
}
.tab-card h3{
    margin-top:25px;
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:#000 !important;
    font-family: 'Montserrat', sans-serif;
}

.tab-card p{
    margin:15px auto 0;
    max-width:650px;
    text-align:center;
    font-size:18px;
    line-height:1.7;
    color:#000;
    font-family: 'Montserrat', sans-serif;
}

.tab-card{
    background:transparent;
}


.tab-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:24px;
    object-position:center 30%;
}

@media(max-width:991px){

        .tech-tabs{
        display:flex;
        justify-content:flex-start;
        align-items:center;
        gap:10px;

        width:100%;
        max-width:100%;
        overflow-x:auto;
        overflow-y:hidden;

        padding:8px;
        margin:0 auto 40px;
        box-sizing:border-box;

        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .tech-tabs::-webkit-scrollbar{
        display:none;
    }

    .tab-btn{
        flex:0 0 auto;
        min-width:150px;
        padding:14px 20px;
        font-size:16px;
        white-space:nowrap;
    }

    .tab-card{

        flex:0 0 85%;

    }

}

@media(max-width:767px){


    .cards-track{
        gap:20px;
    }

    .tab-card{
        flex:0 0 82%;
        transform:scale(.95);
    }

    .tab-card h3{
        font-size:24px;
    }

    .tab-card p{
        font-size:16px;
    }

}

/** tab css end here */

/** carts css start here */

#portfolio{
    position:relative;
    overflow:hidden;
    background:#fff;
    width:100%;
}

.horiz-gallery-wrapper{
    position:relative;
    width:100%;
    overflow:hidden;
}

.horiz-gallery-track{
    position:relative;
    will-change:transform;
}

.horiz-gallery-strip{

    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    gap:30px;
    width:max-content;
    padding:0;

}

.project-wrap:nth-child(3) .project-image img{
    transform: translateX(-20px);
}
/* ===========================
   CARD
=========================== */

.project-wrap{

    flex:0 0 70vw;

    max-width:1700px;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    flex-shrink:0;

}

.project-image{

    width:100%;

    height:55vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.project-image img{

    display:block;

    width:auto;

    max-width:90%;

    max-height:90%;

    object-fit:contain;

    transform-origin:center;

    will-change:transform;

}

/* Content */

.project-info{
    width:100%;
    max-width:1170px;
    margin-top:10px;

}

.project-title{
    font-size:22px;
    font-weight: 700;
    line-height:1;
    margin:0 0 10px;
    color:#000;
    font-family: 'Montserrat', sans-serif !important;
}
.project-subtitle{
    color:#000;
    font-family: 'Montserrat', sans-serif !important;
    font-size:18px;
    font-weight:500;
    margin:8px 0 8px;
    line-height:1.2;

}
.project-price{

    font-size:20px;
    font-weight:700;
    margin-bottom:5px;
    color:#000 !important;
    font-family: 'Montserrat', sans-serif !important;

}

.project-desc{
    font-size:18px;
    color:#000 !important;
    font-family: 'Montserrat', sans-serif !important;
    margin-bottom:10px;
    white-space:nowrap;

}

/* Buttons */

.project-buttons{
    display:flex;
    justify-content:center;
    gap:10px;
}

.project-buttons a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:160px;
    height:45px;
    border-radius:999px;
    text-decoration:none !important;
    font-weight:400;
    transition:.3s;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif !important;
}

.btn-dark{
    background:#000;
    color:#fff;
    border:1px solid #000000;

}

.btn-light{
    background:#fff;
    color:#000;
    border:1px solid #fff;

}

.btn-dark:hover{
    background:#fff;
    color:#000 !important;
}

.btn-light:hover{
    color:#fff !important;
    background:#000;
}

/* Responsive */

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1200px) {

    .project-wrap {
        flex: 0 0 82vw;
        width: 82vw;

        min-height: calc(100svh - 95px);
        height: calc(100svh - 95px);
        padding: 10px 16px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        box-sizing: border-box;
    }
    .project-image {
        width: 100%;
        height: clamp(220px, 36svh, 340px);

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;
    }

    .project-image img {
        display: block;
        width: auto;
        height: auto;
        max-width: 92%;
        max-height: 100%;
        object-fit: contain;
    }

    .project-info {
        width: 100%;
        max-width: 900px;
        margin-top: 12px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .project-title {
        font-size: clamp(17px, 2.3vw, 18px);
        margin-bottom: 5px 0;
    }

    .project-subtitle {
        font-size: clamp(15px, 2.2vw, 18px);
        line-height: 1.2;
        margin: 5px 0;
    }

    .project-price {
        font-size: clamp(17px, 2.3vw, 20px);
        margin: 5px 0;
    }

    .project-desc {
        white-space: normal;
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.4;
        margin: 7px 0 12px;
    }

    .project-buttons {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .project-buttons a {
        width: 145px;
        height: 42px;
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .project-info {
        max-width: 600px;
        padding: 0 16px;
    }

}


@media (max-width: 767px) {
    .horiz-gallery-wrapper {
        height: 100svh !important;
        max-height: none !important;
    }
    .project-wrap {
        flex: 0 0 100vw;
        width: 100vw;
        max-width: none;

        height: 97svh;
        min-height: 97svh;

        padding: 10px 15px 18px;

        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .project-info {
        max-width: 360px;
        padding: 0;
        margin-top: 5px;
    }

    .project-image img {
        max-width: 95%;
        max-height: 320px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .project-info {
        width: calc(100vw - 40px);
        max-width: none;
        padding: 0;
        margin-top: 5px;
        box-sizing: border-box;
    }

}

/* Small mobile */
@media (max-width: 480px) {

    .project-wrap {
        flex: 0 0 100vw;
        width: 100vw;
        max-width: none;

        min-height: 100svh;
        height: auto;

        padding: 100px 14px 15px;

        box-sizing: border-box;
        justify-content: flex-start;
    }

    .project-image {
        height: clamp(200px, 33svh, 285px);
    }

    .project-info {
        max-width: 350px;
        margin-top: 8px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-subtitle {
        font-size: 15px;
    }

    .project-price {
        font-size: 17px;
    }

    .project-desc {
        font-size: 14px;
        line-height: 1.35;
    }

    .project-buttons a {
        width: 140px;
        height: 40px;
        font-size: 14px;
    }
}

/** carts css end here */

/* =========================================
   SPECIFICATIONS CARDS — CLEAN CSS
   Elementor Container ID: for-speq
   ========================================= */

/* Elementor parent container */
#for-speq {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    flex: 1 1 100% !important;
    align-self: stretch !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #fff;
    box-sizing: border-box !important;

    --width: 100% !important;
    --content-width: 100% !important;
    --container-widget-width: 100% !important;
}

/* Shortcode widget width */
#for-speq > .elementor-element,
#for-speq .elementor-widget-shortcode,
#for-speq .elementor-widget-container,
#for-speq .elementor-shortcode {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    flex: 1 1 100% !important;
    align-self: stretch !important;

    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Montserrat and black text */
#for-speq,
#for-speq * {
    box-sizing: border-box;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

/* Main cards grid */
#for-speq .sr-specs__grid {
    width: 100%;
    max-width: 1550px;
    min-width: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;

    margin: 0 auto;
    padding: 0 24px;
}

/* Individual card */
#for-speq .sr-spec-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;

    border: 1px solid #dfe2dc;
    border-radius: 18px;
    background: #fff;

    box-shadow: 0 12px 38px rgba(18, 25, 15, 0.06);

    opacity: 1;
    transform: translateY(0);

    transition:
        transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Card hover */
#for-speq .sr-spec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 181, 34, 0.55);
    box-shadow: 0 22px 50px rgba(18, 25, 15, 0.12);
}

/* Card heading */
#for-speq .sr-spec-card__title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0;
    padding: 22px 24px;

    border-bottom: 1px solid #dfe2dc;
    background: #fff;

    color: #000;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Letter icon */
#for-speq .sr-spec-card__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;
    background: #6cb52217;

    color: #000;
    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease;
}

/* Icon hover */
#for-speq .sr-spec-card:hover .sr-spec-card__icon {
    transform: rotate(-6deg) scale(1.12);
    background: #6cb522;
    color: #000;
}

/* Specifications list */
#for-speq .sr-spec-list {
    margin: 0;
    padding: 0;
}

/* Specification row */
#for-speq .sr-spec-row {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(155px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 18px;
    padding: 16px 24px;

    background: #fff;

    transition:
        background-color 0.25s ease,
        padding-left 0.25s ease;
}

/* Alternate row background */
#for-speq .sr-spec-row:nth-child(even) {
    background: #6cb52217;
}

/* Row hover */
#for-speq .sr-spec-row:hover {
    padding-left: 29px;
    background: #6cb52217;
}

/* Row text */
#for-speq .sr-spec-row dt,
#for-speq .sr-spec-row dd {
    margin: 0;

    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.45;
}

/* Specification name */
#for-speq .sr-spec-row dt {
    font-weight: 500;
}

/* Specification value */
#for-speq .sr-spec-row dd {
    position: relative;
    padding-left: 17px;
    font-weight: 700;
}

/* Green bullet */
#for-speq .sr-spec-row dd::before {
    content: "";

    position: absolute;
    top: 0.58em;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #6cb522;

    transition: transform 0.25s ease;
}

/* Bullet hover animation */
#for-speq .sr-spec-row:hover dd::before {
    transform: scale(1.55);
}

/* Tablet and mobile */
@media (max-width: 860px) {
    #for-speq .sr-specs__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Small mobile */
@media (max-width: 520px) {
    #for-speq .sr-specs__grid {
        padding: 0 10px;
    }

    #for-speq .sr-spec-card {
        border-radius: 14px;
    }

    #for-speq .sr-spec-card__title {
        padding: 19px 18px;
        font-size: 19px;
    }

    #for-speq .sr-spec-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 14px 18px;
    }

    #for-speq .sr-spec-row:hover {
        padding-left: 21px;
    }

    #for-speq .sr-spec-row dd {
        padding-left: 15px;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    #for-speq .sr-spec-card,
    #for-speq .sr-spec-card__icon,
    #for-speq .sr-spec-row,
    #for-speq .sr-spec-row dd::before {
        transition: none !important;
    }

    #for-speq .sr-spec-card:hover {
        transform: none;
    }
}