:root {
    --pink: #f5386d;
    --pink-light: #f55f8d;
    --orange: #ff8a1e;
    --gradient: linear-gradient(90deg, #f5386d 0%, #ff8a1e 100%);
    --dark: #1a1a2e;
    --gray: #666a7a;
    --light-bg: #fff8f8;
    --border: #f0e6e6;
    --radius: 14px;
}



body {
    font-family: 'Poppins', sans-serif;
}

.section-tag {
    color: var(--pink);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-outline-brand {
    border: 1.5px solid var(--pink);
    color: var(--pink);
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 22px;
}

.btn-outline-brand:hover {
    background: var(--pink);
    color: #fff;
}

/* Hero */
.hero {
    padding: 16px 0 4px;
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.hero-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 9px;
}

.hero h1 {
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-visual img {
    border-radius: 0px;
}

.hero-stats i {
    color: var(--pink);
    font-size: 20px;
}

.new:hover {
    transform: translate(-5px, -5px) scale(.8);
    box-shadow: 0 18px 35px rgba(245, 95, 141, .25);
    border-color: transparent;
    cursor: pointer;

}

/* Mobile */
@media (max-width: 767.98px) {
    .btn-gradient {
        padding: 8px 6px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* Mobile View */
@media (max-width: 767.98px) {

    .hero-stats .new {
        padding-left: 30px;
        /* Increase if needed (15px-20px) */
    }

    .hero-stats .new i {
        margin-right: 6px;
        font-size: 18px;
    }

}

/* Service cards */
.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 10px;
    text-align: center;
    transition: .25s ease;
    background: #fff;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(245, 56, 109, .08);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: var(--gradient);
}

.learn-more {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--pink);
    text-decoration: none;
}

.service-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 2px;
    display: flex;
    margin-top: -22px;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.service-card h3 {
    margin: 0 0 8px;
    /* Top margin 0 kar diya */
    line-height: 1.2;
    margin-top: -20px;
}

.service-icon img {
    width: 125px;
    height: 125px;
    object-fit: contain;
    transition: .3s;
}

.service-card:hover .service-icon img {
    transform: scale(1.08);
}

.service-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.service-title h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #111827;
}

.title-line {
    width: 50px;
    height: 4px;
    border-radius: 50px;
    position: relative;
}

/* Left Arrow */
.title-line.left {
    /* background:linear-gradient(90deg,#ff2d75,#ff8a00); */
    background: linear-gradient(90deg, #ff2d75, #ff8a000a);
}

.title-line.left::before {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    /* background:#ff8a00; */
    border-radius: 50%;
}

.title-line.left::after {
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #ff2d75;
    border-radius: 50%;
}

/* Right Arrow */
.title-line.right {
    background: linear-gradient(90deg, #ff8a000a, #ff8a00);
}

.title-line.right::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    /* background:#ff8a00; */
    border-radius: 50%;
}

.title-line.right::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #ff8a00;
    border-radius: 50%;
}

/* Mobile */
@media(max-width:768px) {
    .service-title {
        gap: 10px;
    }

    .service-title h2 {
        font-size: 28px;
    }

    .title-line {
        width: 45px;
    }

    .title-line::before,
    .title-line::after {
        width: 8px;
        height: 8px;
    }
}

/* Hide on Desktop */
.why-title-wrap .title-line {
    display: none;
}

/* Mobile Only */
@media (max-width:767px) {

    .why-title-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 15px;
    }

    .why-title-wrap .title-line {
        display: block;
        flex: 1;
        max-width: 55px;
    }

    .why-title-wrap .why-title {
        margin: 0 !important;
        font-size: 24px;
        line-height: 1.3;
    }
}

/* Stats bar */
/* .stats-bar{background:var(--gradient);border-radius:var(--radius);color:#fff;}
         .stats-bar i{font-size:24px;margin-bottom:8px;} */
.stats-wrapper {
    background: linear-gradient(90deg, #ff2f72 0%, #ff7b22 55%, #ffbf00 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 100, 80, .25);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 30px;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.stat-item {
    transition: all .4s ease;
}

.stat-item:hover {
    transform: translate(-5px, -5px) scale(.8);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(245, 95, 141, .25);
}



.stat-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon img {
    width: 136px;
    height: 92px;
    object-fit: contain;
}

.stat-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.stat-content p {
    color: #fff;
    margin: 3px 0 0;
    font-size: 14px;
    font-weight: 500;
}

@media(max-width:991px) {
    .stat-item {
        padding: 18px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .stat-content h3 {
        font-size: 25px;
    }

    .stat-content p {
        font-size: 14px;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-icon img {
        width: 120px;
        height: 90px;
    }
}

/* Why us */
/* .checklist li{display:flex;align-items:center;gap:10px;margin-bottom:10px;font-weight:500;}
         .checklist i{color:var(--pink);}
         .why-visual{position:relative;border-radius:var(--radius);overflow:hidden;}
         .play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:64px;height:64px;border-radius:50%;background:var(--gradient);color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;border:none;box-shadow:0 10px 30px rgba(245,56,109,.4);} */
/*=========================
         WHY CHOOSE SECTION
         ==========================*/
.why-section {
    background: #fff;
}

.why-tag {
    color: #ff2d5e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    color: #13152b;
}

.why-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.2;
    margin: 10px 0;
}

.checklist {
    margin-bottom: 30px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.checklist i {
    color: #ff2d5e;
    font-size: 14px;
}

.why-btn {
    background: var(--gradient);
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 16px;
    margin-top: -10px;
    font-weight: 600;
    transition: .3s;
}

.why-btn:hover {
    background: #ff8800;
    color: #fff;
}

.why-image {
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow:0 20px 60px rgba(0,0,0,.08); */
}

.why-image img {
    width: 100%;
    height: 315px;
    display: block;
    border-radius: 25px;
    transition: .4s;
}

.why-image:hover img {
    /* transform:scale(1.03); */
}

/*=========================
         Large Laptop
         ==========================*/
@media (max-width:1400px) {
    .why-title {
        font-size: 26px;
    }
}

/*=========================
         Laptop
         ==========================*/
@media (max-width:1199px) {
    .why-title {
        font-size: 24px;
    }

    .why-desc {
        font-size: 14px;
    }
}

/*=========================
         Tablet
         ==========================*/
@media (max-width:991px) {
    .why-section {
        text-align: center;
    }

    .why-title {
        font-size: 24px;
    }

    .checklist li {
        justify-content: center;
    }

    .why-image {
        margin-top: 20px;
    }
}

/*=========================
         Mobile
         ==========================*/
@media (max-width:767px) {
    .why-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .why-desc {
        font-size: 15px;
    }

    .why-btn {
        width: 70%;
        padding: 14px;
        border-radius: 20px;
    }

    .checklist li {
        justify-content: flex-start;
        font-size: 14px;
    }
}

/*=========================
         Small Mobile
         ==========================*/
@media (max-width:575px) {
    .why-title {
        font-size: 24px;
    }

    .why-tag {
        font-size: 12px;
    }

    .why-image {
        border-radius: 18px;
    }

    .why-image img {
        border-radius: 18px;
        height: 208px;
    }
}

/* Industries */
/* .industry-item i{width:60px;height:60px;line-height:60px;border-radius:50%;background:var(--light-bg);color:var(--pink);font-size:22px;margin:0 auto 12px;} */
/*==========================
         Industries
         ===========================*/
/* .industry-heading {
    display: flex;
    align-items: center;
    height: 100%;
} */

.industry-heading {
    display: flex;
    align-items: center;
    height: 100%;
}

.industry-subtitle {
    display: block;
    color: #ff3d6d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.industry-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    color: #1c1c2d;
    margin: 0;
}

/* Large */
@media (max-width:1199px) {
    .industry-title {
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width:991px) {
    .industry-heading {
        justify-content: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .industry-title {
        font-size: 18px;
    }

    .industry-subtitle {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width:767px) {
    .industry-title {
        font-size: 28px;
    }

    .industry-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

/* Small Mobile */
@media (max-width:575px) {
    .industry-title {
        font-size: 24px;
    }
}

.industry-heading span {
    color: #ff3d6d;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.industry-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 4px 2px;
    text-align: center;
    height: 100%;
    transition: .3s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.industry-card img {
    width: 64px;
    height: 67px;
    object-fit: contain;
    margin-bottom: -9px;
}

.industry-card h6 {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.4;
}

/* Large */
@media(max-width:1199px) {
    .industry-card {
        padding: 16px 10px;
    }
}

/* Tablet */
@media(max-width:991px) {
    .industry-heading {
        justify-content: center;
        margin-bottom: -45px;
    }

    .industry-heading span {
        font-size: 20px;
        text-align: center;
    }

    .industry-card img {
        width: 76px;
        height: 76px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .industry-card {
        padding: 15px 8px;
        border-radius: 12px;
    }

    .industry-card img {
        width: 72px;
        height: 72px;
    }

    .industry-card h6 {
        font-size: 12px;
    }
}

/* Small Mobile */
@media(max-width:575px) {
    .industry-heading span {
        font-size: 16px;
    }

    .industry-card {
        padding: 14px 8px;
    }
}

/* ================Our Project- development process=============== */
/*==========================
         PROCESS SECTION
         ==========================*/
.process-section {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

/* Left Side */
.process-subtitle {
    display: inline-block;
    color: #ff5b7f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-title {
    font-size: 23px;
    /* line-height:1.2; */
    font-weight: 700;
    color: #1b1b3a;
    margin: 0;
}

/* Timeline */
.process-timeline {
    position: relative;
}

/* Each Step */
.process-timeline>div {
    position: relative;
    text-align: center;
}

.process-item {
    background: #fff;
    transition: .35s;
}

.process-item:hover {
    transform: translateY(-8px);
}

/* Icon */
.process-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 2px solid;
    background: #fff;
    transition: .35s;
}

.process-item:hover .process-icon {
    transform: rotate(8deg) scale(1.08);
}

.process-icon.pink {
    border-color: #ff5d8f;
    color: #ff5d8f;
}

.process-icon.orange {
    border-color: #ff8a2b;
    color: #ff8a2b;
}

.process-icon.yellow {
    border-color: #f4b400;
    color: #f4b400;
}

/* Number */
.process-number {
    display: block;
    margin-top: 14px;
    color: #ff5b7f;
    font-size: 14px;
    font-weight: 700;
}

/* Title */
.process-item h6 {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Arrow */
.process-arrow {
    position: absolute;
    right: -7px;
    top: 16px;
    font-size: 20px;
    color: #ff6f61;
    font-weight: bold;
    z-index: 2;
}

/* Last Arrow Hide */
.process-timeline>div:last-child .process-arrow {
    display: none;
}

/*==========================
         LARGE SCREEN
         ==========================*/
@media(min-width:1200px) {
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .process-title {
        font-size: 23px;
    }

    .process-item h6 {
        font-size: 14px;
    }
}

/*==========================
         TABLET
         ==========================*/
@media(max-width:991px) {
    .process-section {
        padding: 70px 0;
    }

    .process-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    /* Hide arrows */
    .process-arrow {
        display: none;
    }

    /* Card */
    .process-item {
        border: 1px solid #ececec;
        border-radius: 15px;
        padding: 25px 15px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }
}

/*==========================
         MOBILE
         ==========================*/
@media(max-width:767px) {
    .process-section {
        padding: 60px 0;
    }

    .process-subtitle {
        font-size: 12px;
    }

    .process-title {
        font-size: 28px;
        text-align: center;
    }

    .process-subtitle {
        display: block;
        text-align: center;
    }

    .process-item {
        padding: 20px 10px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .process-item h6 {
        font-size: 14px;
    }

    .process-number {
        font-size: 13px;
    }
}

/*==========================
         SMALL MOBILE
         ==========================*/
@media(max-width:480px) {
    .process-title {
        font-size: 24px;
    }

    .process-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .process-item {
        padding: 18px 8px;
    }

    .process-item h6 {
        font-size: 13px;
    }
}

/* Projects */
.project-section {
    background: #fff;
}

.project-tag {
    color: #ff4f81;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-title {
    font-size: 23px;
    font-weight: 700;
    color: #1c2230;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.view-project {
    color: #ff4f81;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.view-project:hover {
    color: #ff4f81;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.project-content {
    padding: 18px;
}

.project-content h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.project-content p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

/* Owl Nav */
.project-slider .owl-nav {
    display: block !important;
}

.project-slider .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
}

.project-slider .owl-nav .owl-prev {
    left: -23px;
}

.project-slider .owl-nav .owl-next {
    right: -23px;
}

.project-slider .owl-nav button span {
    display: none;
}

.project-slider .owl-nav .owl-prev::before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff4f81;
}

.project-slider .owl-nav .owl-next::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff4f81;
}

.project-slider .owl-dots {
    display: none;
}

@media(max-width:991px) {
    .project-title {
        font-size: 25px;
    }

    .project-slider .owl-nav {
        display: none !important;
    }
}

@media(max-width:576px) {
    .project-title {
        font-size: 22px;
        line-height: 0px;
    }

    .project-card img {
        height: 200px;
    }
}

@media (max-width:767px) {
    .project-section .col-md-3 {
        text-align: center;
        margin-bottom: 30px;
    }

    .project-title br {
        display: none;
    }

    .view-project {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:767px) {

    .filterSwiper {
        overflow: hidden;
        padding-right: 30px;
        /* Next button ka part dikhane ke liye */
    }

    .filterSwiper .swiper-slide {
        width: auto !important;
    }

    .filterSwiper .tp-port-filter-btn {
        width: auto;
        white-space: nowrap;
        margin-bottom: 18px;
    }

}

/* Desktop */
.tp-port-filters {
    display: flex;
}

/* Mobile */
@media (max-width:767px) {

    /* Desktop buttons hide */
    .tp-port-filters {
        display: none !important;
    }

    /* Mobile swiper show */
    .filterSwiper {
        display: block !important;
    }
}


/* .project-card{border-radius:var(--radius);overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.06);}
         .project-card img{aspect-ratio:4/3;object-fit:cover;} */
/* Trusted logos */
/* .trusted-logos img{height:78px;width:auto;opacity:.75;} */
/* .trusted-section{
         position:relative;
         border-bottom:3px solid transparent;
         border-image: linear-gradient(90deg, #f5386d, #ff8a1e) 1;
         }
         .section-tag{
         color:#f5386d;
         font-weight:700;
         font-size:12px;
         letter-spacing:1.5px;
         text-transform:uppercase;
         margin-bottom:20px;
         }
         .trusted-logos img{
         height:68px;
         width:auto;
         max-width:140px;
         object-fit:contain;
         filter:grayscale(0%);
         opacity:0.95;
         transition:transform 0.2s ease, opacity 0.2s ease;
         }
         .trusted-logos img:hover{
         transform:translateY(-2px);
         opacity:1;
         }
         @media (max-width:768px){
         .trusted-logos{
         gap:2rem !important;
         }
         .trusted-logos img{
         height:26px;
         }
         } */

.logo-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-slider-track {
    flex-wrap: nowrap !important;
    width: max-content;
    animation: logoSlide 25s linear infinite;
}

.logo-slider-wrapper:hover .logo-slider-track {
    animation-play-state: paused;
}

@keyframes logoSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.section-tag-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-tag {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ff2d75;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width:767px) {

    .section-tag-wrap {
        gap: 8px;
    }

    .section-tag {
        font-size: 12px;
    }

    .section-tag-wrap .title-line {
        width: 40px;
    }
}

.trusted-section {
    position: relative;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #f5386d, #ff8a1e) 1;
}

.section-tag {
    color: #f5386d;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.logo-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 170px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}

.logo-card img {
    height: 68px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

@media (max-width:768px) {
    .logo-card {
        width: 140px;
        height: 75px;
        padding: 12px 16px;
    }

    .logo-card img {
        height: 46px;
    }

    .trusted-logos {
        gap: 1.25rem !important;
    }
}

.hero {
    padding: 50px 0;
}


.hero-visual {
    position: relative;
    width: 550px;
    height: 550px;
    margin: auto;
}

.laptop {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 460px;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.image-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    animation: orbit 15s linear infinite;
}

.orbit-card {
    position: absolute;
    width: 100px;
    height: 100px;
}

.orbit-card img {
    width: 100%;
    height: auto;
    display: block;
    animation: counterOrbit 15s linear infinite;
}

/* Desktop Positions */
.card1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.card2 {
    top: 150px;
    right: 10px;
}

.card3 {
    bottom: 150px;
    right: 10px;
}

.card4 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.card5 {
    top: 150px;
    left: 10px;
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counterOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@media (max-width:1200px) {

    .hero-visual {
        width: 500px;
        height: 500px;
    }

    .laptop {
        width: 420px;
    }

    .orbit-card {
        width: 105px;
        height: 105px;
    }

    .card1 {
        top: 15px;
    }

    .card2 {
        top: 135px;
        right: 5px;
    }

    .card3 {
        bottom: 135px;
        right: 5px;
    }

    .card4 {
        bottom: 15px;
    }

    .card5 {
        top: 135px;
        left: 5px;
    }

}

@media (max-width:992px) {

    .hero-visual {
        width: 420px;
        height: 420px;
        margin-top: 40px;
    }

    .laptop {
        width: 330px;
    }

    .orbit-card {
        width: 80px;
        height: 80px;
    }

    .card1 {
        top: 10px;
    }

    .card2 {
        top: 110px;
        right: 0;
    }

    .card3 {
        bottom: 110px;
        right: 0;
    }

    .card4 {
        bottom: 10px;
    }

    .card5 {
        top: 110px;
        left: 0;
    }

}

@media (max-width:768px) {

    .hero-visual {
        width: 330px;
        height: 330px;
    }

    .image-circle {
        width: 100%;
    }

    .laptop {
        width: 260px;
    }

    .orbit-card {
        width: 60px;
        height: 60px;
    }

    .card1 {
        top: 0;
    }

    .card2 {
        top: 80px;
        right: -5px;
    }

    .card3 {
        bottom: 80px;
        right: -5px;
    }

    .card4 {
        bottom: 0;
    }

    .card5 {
        top: 80px;
        left: -5px;
    }

}

@media (max-width:480px) {

    .hero-visual {
        width: 280px;
        height: 280px;
    }

    .laptop {
        width: 220px;
    }

    .orbit-card {
        width: 52px;
        height: 52px;
    }

    .card1 {
        top: -5px;
    }

    .card2 {
        top: 70px;
        right: -8px;
    }

    .card3 {
        bottom: 70px;
        right: -8px;
    }

    .card4 {
        bottom: -5px;
    }

    .card5 {
        top: 70px;
        left: -8px;
    }

}

/* Common */
.device {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 460px;
    transform: translate(-50%, -50%);
    transform-origin: center;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

/* Laptop */
.laptop {
    animation: laptopPremium 8s cubic-bezier(.65, 0, .35, 1) infinite;
}

/* Phone */
.phone {
    animation: phonePremium 8s cubic-bezier(.65, 0, .35, 1) infinite;
}

@keyframes laptopPremium {

    0%,
    38% {
        opacity: 1;
        transform:
            translate(-50%, -50%) translateY(0) rotateY(0deg) scale(1);

        filter: blur(0px) drop-shadow(0 15px 35px rgba(245, 56, 109, .25));
    }

    /* Floating */
    20% {
        transform:
            translate(-50%, -56%) rotateY(-3deg) scale(1);
    }

    /* Start transition */
    45% {
        opacity: .7;
        transform:
            translate(-54%, -50%) rotateY(-12deg) scale(.97);

        filter: blur(2px);
    }

    50% {
        opacity: 0;
        transform:
            translate(-58%, -50%) rotateY(-20deg) scale(.95);

        filter: blur(8px);
    }

    100% {
        opacity: 0;
    }
}


@keyframes phonePremium {

    0%,
    45% {
        opacity: 0;

        transform:
            translate(-42%, -50%) rotateY(20deg) scale(.95);

        filter: blur(8px);
    }

    50% {
        opacity: .7;

        transform:
            translate(-46%, -50%) rotateY(10deg) scale(.97);

        filter: blur(2px);
    }

    55%,
    90% {
        opacity: 1;

        transform:
            translate(-50%, -50%) rotateY(0deg) scale(1);

        filter: blur(0px) drop-shadow(0 15px 35px rgba(245, 56, 109, .25));
    }

    /* Floating */
    75% {
        transform:
            translate(-50%, -56%) rotateY(3deg) scale(1);
    }

    100% {
        opacity: 0;

        transform:
            translate(-54%, -50%) rotateY(-12deg) scale(.95);

        filter: blur(8px);
    }
}

.industrySwiper {
    width: 100%;
    overflow-x: hidden;
}

.industrySwiper .swiper-wrapper {
    align-items: stretch;
}

.industrySwiper .swiper-slide {
    height: auto;
    display: flex;
}

.industry-card {
    width: 100%;
}

@media (max-width: 767px) {
    .industrySwiper {
        margin-top: 35px;
    }

}


.tp-port-section {
    background: #ffffff;
    padding: 30px 0;
}

.tp-port-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f5386d, #ff8a1e);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 22px;
    border-radius: 30px;
}

/* .tp-port-heading {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 14px;
} */


/* Heading Wrapper */
.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Heading */
.tp-port-heading {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
}

/* Lines */
.title-line {
    width: 60px;
    height: 4px;
    border-radius: 50px;
    position: relative;
}

/* Left Pink */
.title-line.left {
    background: linear-gradient(to right, #ff2d75, #ffd6e5);
}

.title-line.left::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #ff2d75;
    border-radius: 50%;
}

/* Right Orange */
.title-line.right {
    background: linear-gradient(to left, #ff8a00, #ffe2bf);
}

.title-line.right::before {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    /* background:#ff8a00; */
    border-radius: 50%;
}

/* ================= Responsive ================= */

@media (max-width:991px) {

    .tp-port-heading {
        font-size: 30px;
    }

    .title-line {
        width: 50px;
    }
}

@media (max-width:767px) {

    .section-heading {
        gap: 12px;
    }

    .tp-port-heading {
        font-size: 16px;
        line-height: 1.3;
    }

    .title-line {
        width: 40px;
        height: 3px;
    }

    .title-line::before {
        width: 8px;
        height: 8px;
    }
}

@media (max-width:480px) {

    .tp-port-heading {
        font-size: 14px;
    }

    .title-line {
        width: 30px;
    }
}

/* ---------- Filter buttons ---------- */
.tp-port-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 35px 0 45px;
}

.tp-port-filter-btn {
    border: none;
    outline: none;
    background: rgb(245, 95, 141);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 22px;
    border-radius: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tp-port-filter-btn:hover,
.tp-port-filter-btn.tp-port-active {
    background: linear-gradient(90deg, #f5386d, #ff4c1e);
    color: #fff;
}

/* ---------- Web Card (existing) ---------- */
.tp-port-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tp-port-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.tp-port-thumb {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f2f2f2;
}

.tp-port-thumb img {
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
    margin: auto;
}

.tp-port-card:hover .tp-port-thumb img {
    transform: scale(1.06);
}

.tp-port-info {
    /* display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    flex-wrap: wrap; */

    display: flex;
    gap: 7px;
    padding: 5px 14px 16px;
    flex-wrap: wrap;
    flex-direction: column;
}

.tp-port-live {
    /* background: #2f6fed; */
    background: var(--pink);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.tp-port-link {
    /* color: #f5386d; */
    color: #6e6568;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
}

.tp-port-link:hover {
    color: #ff8a1e;
    text-decoration: underline;
}

/* ---------- App (Mobile) Card - phone mockup style ---------- */
.tp-port-thumb-app {
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #fce7ee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.tp-port-thumb-app img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.tp-port-card:hover .tp-port-thumb-app img {
    transform: scale(1.05);
}

/* ---------- AI Feature Card - different layout (image + text + highlights) ---------- */
.tp-port-ai-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tp-port-ai-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.tp-port-ai-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    padding: 18px 16px 12px;
}

.tp-port-ai-thumb {
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    margin: 0 16px;
    width: calc(100% - 32px);
    border-radius: 8px;
}

.tp-port-ai-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tp-port-ai-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 16px;
}

.tp-port-ai-highlights {
    background: linear-gradient(90deg, #f5386d, #ff8a1e);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
}

.tp-port-ai-list {
    list-style: disc;
    padding: 16px 16px 20px 32px;
    margin: 0;
    font-size: 14px;
    color: #333;
}

.tp-port-ai-list li {
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .tp-port-heading {
        font-size: 16px;
    }

    .tp-port-filter-btn {
        font-size: 12px;
        padding: 7px 16px;
    }
}


/*  ====================== trusted orgnization========== */
.tbo-section {
    padding: 30px 0;
    background: #ffffff;
}

/* .tbo-section .tbo-title {
    font-weight: 800;
    font-size: 1.82rem;
    text-align: center;
    color: #17181b;
    margin-bottom: 18px;
  } */

.tbo-title {
    font-weight: 800;
    font-size: 1.82rem;
    color: #17181b;
    margin: 0;
    text-align: center;
}

/* Wrapper */
.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width:991px) {
    .tbo-title {
        font-size: 1.6rem;
    }
}

@media (max-width:767px) {
    .section-heading {
        gap: 12px;
        margin-bottom: 18px;
    }

    .tbo-title {
        font-size: 1.35rem;
        line-height: 1.4;
    }
}

@media (max-width:480px) {
    .tbo-title {
        font-size: 1.15rem;
    }
}

.tbo-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 15px 10px;
    border-radius: 14px;
    background: transparent;
    transition: transform 0.3s ease, filter 0.3s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.tbo-logo-card img {
    max-height: 95px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.tbo-logo-card:hover {
    background: linear-gradient(135deg, #f5386d, #ff8a1e);
    box-shadow: 0 10px 25px rgba(245, 56, 109, 0.25);
    transform: translateY(-4px);
}

.tbo-logo-card:hover img {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.06);
}

@media (max-width: 767.98px) {
    .tbo-section .tbo-title {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .tbo-logo-card img {
        max-height: 80px;
    }
}

.heroBannerSwiper {
    width: 100%;
    height: 456px;
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow:0 20px 50px rgba(0,0,0,.15); */
}

.heroBannerSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.heroBannerSwiper .swiper-button-next,
.heroBannerSwiper .swiper-button-prev {
    color: #fff;
}

.heroBannerSwiper .swiper-pagination-bullet-active {
    background: #0d6efd;
}

/* ================================
   HERO COUNTER SECTION
================================ */
/* =========================================
   HERO COUNTER WRAPPER
========================================= */

.hero-counter {
    position: relative;

    display: flex;
    align-items: stretch;
    justify-content: center;

    width: 100%;

    padding: 8px;

    gap: 0;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(255, 54, 112, 0.10);

    box-shadow:
        0 12px 30px rgba(255, 54, 112, 0.15);

    overflow: hidden;
}


/* Bottom Gradient */

/* .hero-counter::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: var(--gradient);

    z-index: 10;
} */


/* =========================================
   COUNTER CARD
========================================= */

.counter-card {
    position: relative;

    flex: 1;

    min-width: 0;

    height: 145px;

    perspective: 1000px;

    border-right: 1px solid rgba(255, 60, 110, 0.12);
}


/* Remove border from last card */

.counter-card:last-child {
    border-right: none;
}


/* =========================================
   CARD INNER
========================================= */

.counter-card-inner {
    position: relative;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;

    transition:
        transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}


/* =========================================
   FLIP ON HOVER
========================================= */

.counter-card:hover .counter-card-inner {
    transform: rotateY(180deg);
}


/* =========================================
   FRONT + BACK
========================================= */

.counter-front,
.counter-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    border-radius: 12px;
}


/* =========================================
   FRONT
========================================= */

.counter-front {
    gap: 10px;

    background: rgba(255, 255, 255, 0.75);

    transition: background 0.3s ease;
}


/* =========================================
   FRONT TOP GRADIENT
========================================= */

.counter-front::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 3px;

    background: var(--gradient);

    transition: width 0.35s ease;
}

.counter-card:hover .counter-front::before {
    width: 100%;
}


/* =========================================
   ICON
========================================= */

.counter-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(255, 54, 112, 0.12),
            rgba(255, 138, 31, 0.12));

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}


.counter-icon i {
    font-size: 23px;

    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition:
        transform 0.4s ease;
}


/* Icon hover */

.counter-card:hover .counter-icon {
    transform: scale(1.08);

    box-shadow:
        0 6px 18px rgba(255, 54, 112, 0.18);
}


.counter-card:hover .counter-icon i {
    transform: scale(1.15);
}


/* =========================================
   COUNTER CONTENT
========================================= */

.counter-content h5 {
    margin: 0;

    font-size: 22px;
    line-height: 24px;

    font-weight: 800;

    color: #18212f;

    transition:
        color 0.3s ease;
}


.counter-content p {
    margin: 3px 0 0;

    font-size: 12px;
    line-height: 13px;

    color: #718096;

    white-space: nowrap;

    transition:
        color 0.3s ease;
}


.counter-card:hover .counter-content h5 {
    color: var(--pink);
}


/* =========================================
   BACK SIDE
========================================= */

.counter-back {
    gap: 5px;

    padding: 10px;

    color: white;

    background: var(--gradient);

    transform: rotateY(180deg);

    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.12);
}


/* Back Icon */

.counter-back i {
    font-size: 25px;

    color: white;

    margin-bottom: 3px;
}


/* Back Number */

.counter-back strong {
    font-size: 25px;

    line-height: 28px;

    font-weight: 800;

    color: white;
}


/* Back Text */

.counter-back span {
    font-size: 10px;

    line-height: 14px;

    color: rgba(255, 255, 255, 0.9);

    text-align: center;
}


/* =========================================
   BACK SHINE EFFECT
========================================= */

.counter-back::before {
    content: "";

    position: absolute;

    width: 80px;
    height: 180%;

    top: -40%;

    left: -100px;

    background: rgba(255, 255, 255, 0.15);

    transform: rotate(25deg);

    transition: left 0.7s ease;
}


.counter-card:hover .counter-back::before {
    left: 120%;
}


/* =========================================
   COUNTER NUMBER ANIMATION
========================================= */

.counter {
    display: inline-block;

    animation:
        counterFade 0.5s ease;
}


@keyframes counterFade {

    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   HOVER CARD SHADOW
========================================= */

.counter-card:hover {
    z-index: 5;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-counter {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 1px;

        padding: 5px;

        border-radius: 15px;
    }


    .counter-card {
        height: 130px;

        border-right: none;

        border-bottom:
            1px solid rgba(255, 60, 110, 0.12);
    }


    .counter-card:nth-child(odd) {
        border-right:
            1px solid rgba(255, 60, 110, 0.12);
    }


    .counter-icon {
        width: 42px;
        height: 42px;
    }


    .counter-icon i {
        font-size: 18px;
    }


    .counter-content h5 {
        font-size: 19px;
        line-height: 21px;
    }


    .counter-content p {
        font-size: 12px;
    }


    .counter-back strong {
        font-size: 21px;
    }


    .counter-back i {
        font-size: 20px;
    }

    .heroBannerSwiper{
        height: 320px;
    }

    .swiper-slide-button{
        width: auto !important;
    }

}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 400px) {

    .counter-card {
        height: 120px;
    }

    .counter-content p {
        font-size: 12px;
    }

    .heroBannerSwiper{
        height: 320px;
    }

}