/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* TOPBAR */
.topbar {
    width: 100%;
    background: linear-gradient(90deg, #1abc9c, #0f8fa6);
    color: #fff;
    font-size: 14px;
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px
    }

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}



.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .logo img {
        width: 40px;
    }

    .logo span {
        font-weight: 700;
        color: #0f8fa6;
        font-size: 18px;
    }

/* MENU */
.menu {
    display: flex;
    gap: 25px;
}

    .menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        position: relative;
        font-size: 18px;
    }

        .menu a.active {
            color: #0f8fa6;
        }

            .menu a.active::after {
                content: "";
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 100%;
                height: 2px;
                background: #0f8fa6;
            }

/* LOGIN BUTTON */
.login-btn {
    background: #0f8fa6;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
}

.menu a {
    font-weight: 500;
}

.logo span {
    font-weight: 700;
}

.topbar {
    font-weight: 500;
}

.logo img {
    width: 168px;
    height: 84px;
}

/* HERO SECTION */
.hero {
    width: 100%;
    min-height: 500px;
    /* IMAGE + OVERLAY */
    background: linear-gradient(90deg, rgba(10, 25, 60, 0.9), rgba(10, 25, 60, 0.4)), url('../images/Group 1321315175.png') right center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* CONTENT WIDTH SAME (1320px) */
.hero-content {
    max-width: 1320px;
    padding: 80px 20px;
}

/* TEXT */
.hero-text {
    max-width: 600px;
    color: #fff;
}

    .hero-text h1 {
        font-size: 46px;
        line-height: 1.3;
        font-weight: 300;
        width: 100%;
    }

        .hero-text h1 span {
            color: #ffffff;
            font-weight: bold;
            font-size: 60px;
        }

    .hero-text .light {
        font-weight: 400;
        color: #ddd;
    }

    /* PARAGRAPH */
    .hero-text p {
        margin: 20px 0;
        font-size: 15px;
        color: #ccc;
        line-height: 1.6;
    }

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #00bcd4;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

/* SECTION */
.services {
    padding: 80px 0;
}



/* HEADER */
.section-header {
    text-align: center;
    margin: 0 auto 50px;
}

    .section-header h2 {
        font-size: 42px;
        font-weight: 600;
        color: #222;
        white-space: nowrap;
    }

    .section-header p {
        margin-top: 10px;
        color: #666;
        font-size: 18px;
    }

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

/* ICON / IMAGE BOX */
.icon-box {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background: #0296B2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    /* IMAGE INSIDE BOX */
    .icon-box img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

/* TITLE */
.service-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

/* TEXT */
.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* LINK */
.service-card a {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: #00bcd4;
    text-decoration: none;
    font-weight: 500;
}

.icon-box2 {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background: #28A745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box3 {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background: #800080;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box4 {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background: #6F42C1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box5 {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background: #DC3545;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box6 {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background: #6C757D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box2 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icon-box3 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icon-box4 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icon-box5 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icon-box6 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


.service-card {
    width: 100%;
    border-radius: 30px;
    /* IMAGE + OVERLAY */
    background: url('../images/Layer 7.png') right center / cover no-repeat;
}

/* SECTION */
.reliable {
    padding: 80px 0;
}


/* FLEX */
.reliable-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE SIDE */
.reliable-img {
    position: relative;
    width: 50%;
}

.main-img {
    width: 100%;
    border-radius: 20px;
}

/* SMALL OVERLAY IMAGE */
.small-img {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 160px;
    border-radius: 16px;
    border: 6px solid #fff;
}

/* CONTENT SIDE */
.reliable-content {
    width: 50%;
}

    .reliable-content h2 {
        font-size: 40px;
        font-weight: 600;
        color: #222;
    }

    .reliable-content p {
        margin: 2px 0 17px;
        color: #666;
        font-size: 18px;
    }



/* FEATURE BOX */
.feature-box {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 60px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    align-items: center;
    transition: 0.3s;
}

    .feature-box:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    /* ICON */
    .feature-box .icon {
        width: 90px;
        height: 76px;
        background: #0296B2;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 7px solid #E0F2F5;
    }

        .feature-box .icon img {
            width: 30px;
        }

    /* TEXT */
    .feature-box h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: black;
    }

    .feature-box p {
        font-size: 16px;
        color: #666;
    }

/* SECTION */
.growth {
    padding: 60px 0;
}

/* BOX */
.growth-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 60px;
    border-radius: 50px;
    /* GRADIENT BG */
    background: linear-gradient(135deg, #1e3c72, #2ec4b6);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* LEFT CONTENT */
.growth-content {
    width: 100%;
}

    .growth-content h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    /* LIST */
    .growth-content ul {
        list-style: none;
    }

    .growth-content li {
        margin-bottom: 22px;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        /* CHECK ICON */
        .growth-content li::before {
            content: "✔";
            background: rgba(255, 255, 255, 0.2);
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 12px;
        }

/* RIGHT IMAGE */
.growth-img {
    width: 50%;
    text-align: right;
}

    .growth-img img {
        max-width: 100%;
    }

/* DECORATIVE CIRCLE (optional like design) */
.growth-box::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.vector img {
    position: absolute;
    top: -3%;
    left: 40px;
    height: 390px;
}

/* SECTION */
.counter {
    padding-top: 20px;
    padding-bottom: 100px;
}

/* BOX */
.counter-box {
    background: url('../images/Group 1321315178.png') right center / cover no-repeat;
    border-radius: 25px;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: #fff;
}

/* ITEM */
.counter-item h2 {
    font-size: 78px;
    font-weight: bold;
}

.counter-item p {
    margin-top: 8px;
    font-size: 20px;
    color: #dfefff;
    font-weight: 700;
}

/* SECTION */
.brands {
    padding: 80px 0;
    background: #fff;
}

/* HEADER */
.brands-header {
    text-align: center;
    margin: 0 auto 50px;
}

    .brands-header h2 {
        font-size: 60px;
        color: #1c6fa3;
        font-weight: bold;
    }

    .brands-header h3 {
        font-size: 40px;
        margin: 10px 0;
        font-weight: 600;
        color: #222;
        white-space: nowrap;
    }

    .brands-header p {
        font-size: 18px;
        color: #666;
        line-height: 1.6;
        width: 100%;
        max-width: 100%;
    }

/* LOGOS GRID */
.brands-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

/* LOGO ITEM */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    filter: grayscale(100%);
    transition: 0.3s;
}

    .logo-item img {
        max-width: 180px;
        opacity: 0.7;
    }

    /* HOVER EFFECT */
    .logo-item:hover {
        filter: grayscale(0%);
    }

        .logo-item:hover img {
            opacity: 1;
        }

.brands-logos {
    display: flex;
    overflow: hidden;
}

.brands-logos {
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}




/* BOX */
.cta-box {
    text-align: center;
    padding: 60px 20px;
    border-radius: 50px;
    color: #fff;
    /* GRADIENT */
    background: linear-gradient(to right, #EE5A32, #EE415B, #AF1B8B, #6505A0);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

    /* HEADING */
    .cta-box h2 {
        font-size: 44px;
        font-weight: bold;
    }

    /* TEXT */
    .cta-box p {
        margin: 15px 0 30px;
        font-size: 18px;
        color: #f3e9ff;
    }

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 138px;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    /* BUTTON HOVER */
    .cta-btn:hover {
        background: #fff;
        color: #7b1fa2;
    }

/* BACKGROUND CIRCLES (design effect) */
.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

/* TOP LEFT CIRCLE */
.cta-box::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

/* BOTTOM RIGHT CIRCLE */
.cta-box::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
}

.vector2 img {
    position: absolute;
    top: -62%;
    right: 130px;
}

/* SECTION */
.contact {
    padding: 100px 0;
    background: #fff;
}

/* FLEX */
.contact-flex {
    display: flex;
    gap: 200px;
    align-items: center;
}

/* LEFT */
.contact-form {
    width: 50%;
}

    .contact-form h2 {
        font-size: 45px;
        font-weight: 600;
        margin-bottom: 25px;
    }

/* FORM ROW */
.form-row {
    display: flex;
    gap: 20px;
}

/* INPUT GROUP */
.input-group {
    width: 100%;
    margin-bottom: 15px;
}

    .input-group label {
        display: block;
        font-size: 13px;
        margin-bottom: 6px;
        color: #444;
    }

    /* INPUT */
    .input-group input,
    .input-group textarea {
        width: 100%;
        padding: 10px 12px;
        border-radius: 6px;
        border: 1px solid #ddd;
        font-size: 13px;
        outline: none;
        transition: 0.2s;
    }

/* TEXTAREA */
textarea {
    height: 100px;
    resize: none;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #00bcd4;
}

/* BUTTON */
.submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #00a8b5;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .submit-btn:hover {
        background: #008c96;
    }

/* RIGHT IMAGE */
.contact-img {
    width: 50%;
}

    .contact-img img {
        width: 100%;
        border-radius: 20px;
        height: 410px;
    }

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
}

.hero-text {
    max-width: 650px;
}

    .hero-text h1 {
        width: 110%;
    }

/* SECTION */
.process {
    padding: 80px 0;
    text-align: center;
}

    .process h2 {
        font-size: 42px;
        margin-bottom: 50px;
        font-weight: 300;
    }

        .process h2 span {
            font-weight: bold;
        }

/* BUTTON */
.process-btn {
    margin-top: 40px;
    padding: 14px 28px;
    border: none;
    background: #2c6fb7;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

:root {
    --bg-dark: #ffffff;
    --text-light: #ffffff;
    --primary-blue: #007bff;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: var(--text-light);
}

.process-section {
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 80px;
    font-weight: 200;
    font-size: 42px;
    color: black;
}



.process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 400px;
}

/* Background SVG Line */
.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.3;
}

/* Individual Steps */
.process-step {
    position: relative;
    z-index: 2;
    width: 180px;
    transition: all 0.4s ease;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--step-color);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--step-color);
}

    .step-content h3 {
        font-size: 1rem;
        margin: 0;
        line-height: 1.4;
        color: black;
    }

/* Alternating Positions */
.step-up {
    transform: translateY(-50px);
}

.step-down {
    transform: translateY(80px);
}

/* Hover Effects */


.process-step:hover .step-number {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--step-color);
}



.section-title span {
    font-weight: bold;
}



.services-area {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}


.header-content {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual Service Card */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.service-card {
    transform: translateY(-15px);
    border-color: var(--card-clr);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
/*.service-card:hover {
            transform: translateY(-15px);
            border-color: var(--card-clr);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }*/

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--card-clr);
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-card:hover .card-icon {
    background: var(--card-clr);
    color: #fff;
    transform: rotateY(360deg);
}

.card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-info p {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    text-decoration: none;
    color: var(--card-clr);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

    .read-more:hover {
        letter-spacing: 1px;
    }

/* Background Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--card-clr);
    filter: blur(100px);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.service-card:hover .card-glow {
    opacity: 0.15;
}



.logo-section {
    padding: 80px 0;
    text-align: center;
}

.logo-title {
    color: #94a3b8;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.logo-slider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    /* Isse side ke logos fade dikhte hain */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    width: calc(250px * 10);
    /* Logo width * total logos */
    animation: scroll 25s linear infinite;
}

/* Individual Logo Card Style */
.logo-card {
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    cursor: pointer;
}

    .logo-card span {
        color: #3b82f6;
        /* Premium Blue Color */
        margin-right: 4px;
    }



/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }
}




.logo-section h2 {
    font-size: 60px;
    color: #1c6fa3;
    font-weight: bold;
}


.logo-section h3 {
    font-size: 40px;
    margin: 10px 0;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}

.logo-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    width: 100%;
    margin-bottom: 60px;
}

.testimonial-wall {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: black;
}

    .title span {
        color: #3b82f6;
        border-bottom: 3px solid #3b82f6;
    }

.expand-wrapper {
    display: flex;
    width: 100%;
    max-width: 1100px;
    height: 450px;
    gap: 15px;
}

.expand-card {
    position: relative;
    flex: 1;
    /* Default width sabki barabar */
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.2, 0.5, 0.3, 1);
    display: flex;
    align-items: flex-end;
}

    /* Hover karne par card bada ho jayega */
    .expand-card:hover {
        flex: 4;
        /* Isse card stretch hoga */
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-color: #3b82f6;
    }

.content {
    padding: 40px;
    display: flex;
    gap: 20px;
    min-width: 500px;
    /* Text ko shrink hone se bachane ke liye */
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.expand-card:hover .content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.text-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}

.text-box h4 {
    margin: 0;
    font-size: 1.3rem;
    color: #fff;
}

.text-box span {
    font-size: 0.9rem;
    color: #3b82f6;
}

/* Jab card bada na ho tab ek icon dikhana hai center mein */
.expand-card::before {
    content: '\f10d';
    /* FontAwesome Quote icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.expand-card:hover::before {
    opacity: 0;
}

/* ... baki pichla CSS same rahega ... */

/* Default Active Card State */
.expand-card.active {
    flex: 4;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: #3b82f6;
}

    .expand-card.active .content {
        opacity: 1;
        transform: translateY(0);
    }

    .expand-card.active::before {
        opacity: 0;
    }

/* Logic: Jab wrapper par hover ho, to default active card ko chhota kar do 
   agar user kisi aur card (non-active) par hover kar raha hai */
.expand-wrapper:hover .expand-card.active:not(:hover) {
    flex: 1;
    background: #111827;
    border-color: rgba(255, 255, 255, 0.05);
}

    .expand-wrapper:hover .expand-card.active:not(:hover) .content {
        opacity: 0;
        transform: translateY(20px);
    }

    .expand-wrapper:hover .expand-card.active:not(:hover)::before {
        opacity: 1;
    }

/* Hovering on any card */
.expand-card:hover {
    flex: 4 !important;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    border-color: #3b82f6 !important;
}

    .expand-card:hover .content {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

.contact-section {
    padding: 100px 20px;
    background: radial-gradient(circle at bottom left, rgba(0, 123, 255, 0.1), transparent);
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Info Side */
.badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.title {
    font-size: 2.8rem;
    margin: 20px 0;
    text-align: left;
}

    .title span {
        background: linear-gradient(to right, #3b82f6, #60a5fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.info-items {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

    .info-item .icon {
        width: 55px;
        height: 55px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #3b82f6;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.text span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
}

.text p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Form Side */
.contact-form-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

    .input-group input,
    .input-group textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 2px solid rgb(231 228 228);
        padding: 10px 0;
        color: #000000;
        font-size: 1rem;
        outline: none;
        transition: 0.3s;
    }

    .input-group label {
        position: absolute;
        left: 0;
        top: 10px;
        color: #64748b;
        pointer-events: none;
        transition: 0.3s;
    }

    /* Floating Label Logic */
    .input-group input:focus ~ label,
    .input-group input:valid ~ label,
    .input-group textarea:focus ~ label,
    .input-group textarea:valid ~ label {
        top: -20px;
        font-size: 0.85rem;
        color: #3b82f6;
    }

    .input-group input:focus,
    .input-group textarea:focus {
        border-color: #3b82f6;
    }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #3b82f6;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

    .submit-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
        background: #2563eb;
    }



.info-header p {
    color: rgb(0, 0, 0);
}

.text p {
    color: black;
}

.main-footer {
    background-color: #020617;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
    color: #94a3b8;
}


/* Background Glow Effects */
.footer-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 1;
}

.glow-1 {
    background: #3b82f6;
    top: -100px;
    left: -100px;
}

.glow-2 {
    background: #6366f1;
    bottom: -100px;
    right: -100px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 0px;
}

.footer-logo {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

    .footer-logo span {
        color: #3b82f6;
    }

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 2px;
        background: #3b82f6;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #3b82f6;
                padding-left: 8px;
            }

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

        .social-links a:hover {
            background: #3b82f6;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }

/* Newsletter Box */
.subscribe-box {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    margin-top: 20px;
}

    .subscribe-box input {
        background: transparent;
        border: none;
        padding: 10px 15px;
        color: #fff;
        width: 100%;
        outline: none;
    }

    .subscribe-box button {
        background: #3b82f6;
        border: none;
        width: 45px;
        height: 40px;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

        .subscribe-box button:hover {
            background: #2563eb;
        }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

    .footer-bottom span {
        color: #fff;
        font-weight: 600;
    }

.bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

    .bottom-links a:hover {
        color: #3b82f6;
    }


.about-helix {
    padding: 150px 0;
    position: relative;
    background-color: #030303;
}



.helix-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Left Side Content */
.tech-tag {
    color: #3b82f6;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    border-left: 3px solid #3b82f6;
    padding-left: 10px;
}

.glitch-text {
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    color: #fff;
    margin-bottom: 30px;
}

    /* Glitch Effect on Text */
    .glitch-text::before {
        content: attr(data-text);
        position: absolute;
        left: -2px;
        text-shadow: 2px 0 #ff00c1;
        clip: rect(44px, 450px, 56px, 0);
        animation: glitch 3s infinite linear alternate-reverse;
    }

@keyframes glitch {
    0% {
        clip: rect(10px, 9999px, 5px, 0);
    }

    100% {
        clip: rect(80px, 9999px, 90px, 0);
    }
}

.helix-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Floating Helix Side */
.helix-cards {
    position: relative;
    height: 500px;
}

.h-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    position: absolute;
    transition: 0.5s ease;
}

    .h-card i {
        font-size: 2rem;
        color: #3b82f6;
        margin-bottom: 15px;
    }

    .h-card h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .h-card p {
        font-size: 0.85rem;
        color: #64748b;
    }

/* 3D Floating Positions */
.c1 {
    top: 0;
    left: 0;
    transform: perspective(1000px) rotateY(25deg);
    animation: float 6s infinite alternate;
}

.c2 {
    top: 120px;
    left: 100px;
    transform: perspective(1000px) rotateY(25deg);
    animation: float 8s infinite alternate-reverse;
    z-index: 2;
}

.c3 {
    top: 240px;
    left: 200px;
    transform: perspective(1000px) rotateY(25deg);
    animation: float 7s infinite alternate;
}

@keyframes float {
    from {
        transform: perspective(1000px) rotateY(25deg) translateY(0);
    }

    to {
        transform: perspective(1000px) rotateY(25deg) translateY(-20px);
    }
}

.h-card:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    box-shadow: -10px 10px 30px rgba(59, 130, 246, 0.2);
    transform: perspective(1000px) rotateY(0deg) scale(1.1);
    z-index: 10;
}


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700&family=JetBrains+Mono&display=swap');

.holo-testimonial {
    height: 64vh;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    /* Monospaced for coding feel */
}

/* Moving Neon Grid Background */
.holo-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 50px;
    }
}

.holo-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    z-index: 10;
    padding: 0 40px;
}

/* Terminal Styling */
.terminal-box {
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.terminal-header {
    background: #0a1128;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 8px;
}

    .dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ff5f56;
    }

        .dots span:nth-child(2) {
            background: #ffbd2e;
        }

        .dots span:nth-child(3) {
            background: #27c93f;
        }

.file-name {
    color: #64748b;
    font-size: 0.8rem;
}

.terminal-body {
    padding: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Sidebar Styling */
.side-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #3b82f6;
    margin-bottom: 25px;
}

.client-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

    .client-item img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid #3b82f6;
    }

.c-info h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.c-info span {
    font-size: 0.75rem;
    color: #64748b;
}

.client-item:hover,
.client-item.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

/* Glitch Animation for New Text */
.glitch-load {
    position: relative;
    color: #fff;
    animation: glitchText 0.3s cubic-bezier(.25, .46, .45, .94) both;
}

@keyframes glitchText {
    0% {
        transform: translate(0);
        text-shadow: 0 0 #ff00c1, 0 0 #00fff9;
    }

    20% {
        transform: translate(-2px, 2px);
        text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }

    40% {
        transform: translate(-2px, -2px);
        text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }

    60% {
        transform: translate(2px, 2px);
        text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }

    80% {
        transform: translate(2px, -2px);
        text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }

    100% {
        transform: translate(0);
        text-shadow: 0 0 #ff00c1, 0 0 #00fff9;
    }
}




@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

.light-parallax-section {
    background: #f0f4f8;
    /* Soft Ice Blue Background */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Floating Soft Glow */
.light-bg-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 1;
}

.lightSwiper {
    width: 100%;
    max-width: 950px;
    z-index: 10;
}

/* Crystal Card Effect */
.crystal-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 60px;
    margin: 20px;
    position: relative;
    box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
    /* Neumorphism Shadows */
}

.client-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.img-wrapper {
    width: 90px;
    height: 90px;
    padding: 5px;
    background: linear-gradient(135deg, #00bcd4, #3b82f6);
    border-radius: 30px;
}

    .img-wrapper img {
        width: 100%;
        height: 100%;
        border-radius: 25px;
        object-fit: cover;
        border: 3px solid #fff;
    }

.client-details h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 800;
}

.client-details span {
    color: #00bcd4;
    font-size: 0.95rem;
    font-weight: 600;
}

.review-text {
    color: #475569;
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Watermark Number */
.card-watermark {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 188, 212, 0.05);
}

/* Minimal Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.nav-btn {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 5px 5px 15px #d1d9e6;
    transition: 0.3s;
}

    .nav-btn:hover {
        background: #00bcd4;
        color: #fff;
        transform: scale(1.1);
    }

.swiper-pagination-bullet {
    background: #00bcd4 !important;
    width: 12px;
    height: 12px;
}

.parallax-testi-section {
    background: #010409;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 100px;
}

.parallax-bg-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallaxSwiper {
    width: 100%;
    max-width: 900px;
    padding: 50px 0;
    z-index: 10;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.client-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

    .client-box img {
        width: 80px;
        height: 80px;
        border-radius: 25px;
        border: 2px solid #00bcd4;
    }

.client-details h3 {
    color: #fff;
    font-size: 1.4rem;
}

.client-details span {
    color: #00bcd4;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-text {
    color: #94a3b8;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
}

.card-number {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
}

/* Controls Styling */
.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    background: #00bcd4;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 15px;
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem !important;
    }

.swiper-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    background: #00bcd4 !important;
}





/* INITIAL STATE (hidden + bottom) */
.section-header {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

    /* ACTIVE STATE (visible + original position) */
    .section-header.show {
        opacity: 1;
        transform: translateY(0);
    }

    .section-header h2 {
        transition-delay: 0.2s;
    }

    .section-header p {
        transition-delay: 0.4s;
    }

/* INITIAL STATE */
.helix-content .tech-tag,
.helix-content h2,
.helix-content p {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

/* ACTIVE STATE */
.helix-content.show .tech-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.helix-content.show h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.helix-content.show p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* INITIAL STATE */
.cta-box h2,
.cta-box p,
.cta-box .cta-btn {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s ease;
}

/* ACTIVE */
.cta-box.show h2 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.cta-box.show p {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.cta-box.show .cta-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

/* BUTTON HOVER EXTRA PREMIUM */
.cta-btn:hover {
    transform: scale(1.05);
}

/* INITIAL STATE */
.contact-info .badge,
.contact-info .title,
.contact-info p,
.contact-info .info-item {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s ease;
}

/* ACTIVE */
.contact-info.show .badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.contact-info.show .title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.contact-info.show p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* INFO ITEMS (one by one) */
.contact-info.show .info-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.contact-info.show .info-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.contact-info.show .info-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s;
}

/* INITIAL STATE */
.contact-form-box {
    opacity: 0;
    transform: scale(0.8) translateY(80px);
    transition: all 0.8s ease;
}

    /* ACTIVE STATE */
    .contact-form-box.show {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

/* INITIAL STATE */
.footer-col {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s ease;
}

/* ACTIVE STATE */
.footer-grid.show .footer-col:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.footer-grid.show .footer-col:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.footer-grid.show .footer-col:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.footer-grid.show .footer-col:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* INITIAL STATE */
.logo-section h2,
.logo-section h3,
.logo-section p {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease;
}

/* ACTIVE */
.logo-section.show h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.logo-section.show h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.logo-section.show p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* HEADING */
.growth-content h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

/* LIST ITEMS */
.growth-content li {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease;
}

/* ACTIVE */
.growth-content.show h2 {
    opacity: 1;
    transform: translateY(0);
}

/* stagger list */
.growth-content.show li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.growth-content.show li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.growth-content.show li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}

/* INITIAL STATE */
.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

    /* ACTIVE */
    .service-card.show {
        opacity: 1;
        transform: translateY(0);
    }

/* INITIAL STATE */
.hero-text h1,
.hero-text p,
.hero-text .hero-btn {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* ACTIVE */
.hero-text.show h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    width: 120%;
    font-weight: 300;
}

.hero-text.show p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-text.show .hero-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* INITIAL */
.process-step {
    opacity: 0;
    transition: opacity 0.6s ease;
}

    /* ACTIVE */
    .process-step.show {
        opacity: 1;
    }

/* INITIAL */
.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    /* ACTIVE */
    .section-title.show {
        opacity: 1;
        transform: translateY(0);
        font-weight: 300;
    }

    /* SPAN (Process word highlight delay) */
    .section-title span {
        display: inline-block;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.5s ease;
    }

    .section-title.show span {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s ease;
}

    /* show */
    .scroll-indicator.show {
        opacity: 1;
        transform: translateY(0);
    }

/* SVG circle */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
}

.progress-bar {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.3s ease;
}

/* arrow */
.arrow {
    position: absolute;
    color: #3b82f6;
    font-size: 30px;
}

/* glass effect */
.scroll-indicator::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

/* hover */
.scroll-indicator:hover {
    transform: scale(1.1);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #00bcd4, #3b82f6);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    overflow: hidden;
    animation: pulseGlow 2s infinite;
    transition: 0.3s ease;
}

/* 🔥 Glow pulse animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(59, 130, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
    }

    100% {
        box-shadow: 0 0 0 rgba(59, 130, 246, 0.5);
    }
}

/* 🔥 Shine effect */
.hero-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 2.5s infinite;
}

/* shine animation */
@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover (extra premium) */
.hero-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.submit-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
    animation: softGlow 2.5s infinite;
}

/* 🔥 soft glow (light version) */
@keyframes softGlow {
    0% {
        box-shadow: 0 0 0 rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    }

    100% {
        box-shadow: 0 0 0 rgba(59, 130, 246, 0.3);
    }
}

/* 🔥 shine effect */
.submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover */
.submit-btn:hover {
    transform: translateY(-3px);
}

.login-btn {
    position: relative;
    overflow: hidden;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    /* 🔥 animated gradient */
    background: linear-gradient(270deg, #00bcd4, #3b82f6, #00bcd4);
    background-size: 300% 300%;
    animation: gradientMove 4s ease infinite;
    transition: 0.3s ease;
}

/* gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 🔥 shine effect */
.login-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shineMove 3s infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-btn {
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    transition: 0.3s ease;
    animation: borderGlow 2.5s infinite;
}

/* 🔥 border glow animation */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
    }
}

/* 🔥 inner shine */
.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shineMove 3s infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover */
.cta-btn:hover {
    transform: scale(1.05);
    background: #fff;
    color: #7b1fa2;
}

/* CONTAINER */
.floating-contact {
    position: fixed;
    bottom: 180px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* BUTTON */
.fc-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    animation: floatPulse 2.5s infinite;
}

/* COLORS */
.whatsapp {
    background: #25D366;
}

.email {
    background: #3b82f6;
}

.call {
    background: #0284c7;
}

/* HOVER */
.fc-btn:hover {
    transform: scale(1.1);
}

/* 🔥 PULSE ANIMATION */
@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    }
}

/* 🔥 RIPPLE EFFECT */
.fc-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


html {
    scroll-behavior: smooth;
}

a.login-btn {
    text-decoration: none;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.menu a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

    /* 🔥 animated underline */
    .menu a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 0%;
        height: 2px;
        background: #0f8fa6;
        transition: 0.4s ease;
        transform: translateX(-50%);
    }

    /* hover effect */
    .menu a:hover::after {
        width: 100%;
    }

    /* hover color */
    .menu a:hover {
        color: #0f8fa6;
    }

    .menu a.active {
        color: #0f8fa6;
    }

        .menu a.active::after {
            width: 100%;
        }

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

.about-pillars {
    height: 100vh;
    width: 100%;
    background: #000;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pillar-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.pillar {
    position: relative;
    flex: 1;
    /* Default size */
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 188, 212, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    opacity: 0.6;
    transition: 0.5s;
}

/* Jab mouse pillar par jaye */
.pillar:hover {
    flex: 3;
    /* Expand kardo */
}

    .pillar:hover .pillar-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
        opacity: 1;
    }

.pillar-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s 0.2s;
    /* Halka delay content ke liye */
}

.pillar:hover .pillar-content {
    opacity: 1;
    transform: translateY(0);
}

.p-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -80px;
    left: 0;
}

.pillar-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00bcd4;
}

.pillar-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.p-btn {
    padding: 12px 25px;
    border: 1px solid #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
}

    .p-btn:hover {
        background: #00bcd4;
        color: #000;
    }

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

.kinetic-about {
    position: relative;
    display: flex;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.panel {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.image-strip {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: 0.1s linear;
}

    .image-strip img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        filter: brightness(0.3) grayscale(50%);
        border: 5px solid #020617;
    }

/* Center Content Styling */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 100%;
    max-width: 600px;
    padding: 0px;
}

.about-glass-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    margin-top: 62px;
}

.pvk-badge {
    color: #00bcd4;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 1.8rem;
}

.about-glass-card h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 20px 0;
}

    .about-glass-card h1 span {
        color: #00bcd4;
    }

.about-glass-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.stat-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.s-box b {
    font-size: 1.8rem;
    color: #fff;
    display: block;
}

.s-box span {
    color: #00bcd4;
    font-size: 0.8rem;
    font-weight: 700;
}

.cta-blue {
    display: inline-block;
    padding: 15px 35px;
    background: #00bcd4;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 15px;
    transition: 0.3s;
}

/* ===============================
   GLOBAL RESPONSIVE FIX
================================= */

html,
body {
    overflow-x: hidden;
}

/* Fix container */
.container {
    width: 100%;
    max-width: 1320px;
    padding: 0 16px;
}

/* ===============================
   NAVBAR RESPONSIVE
================================= */

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.3s;
        z-index: 999;
    }

        .menu.active {
            right: 0;
        }

    .hamburger {
        display: block;
    }

    .login-btn {
        display: none;
    }
}

/* ===============================
   HERO RESPONSIVE
================================= */

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 36px;
    }

        .hero-text h1 span {
            font-size: 42px;
        }

    .vector img {
        position: absolute;
        top: -3%;
        left: 10px;
        height: 350px;
    }

    .design-why {
        padding: 90px 0 !important;
    }

    .design-why-wrap {
        display: flex !important;
        align-items: flex-start !important;
        gap: 38px !important;
    }

    /* LEFT SIDE */
    .design-why-left {
        width: 42% !important;
    }

        .design-why-left h2 {
            font-size: 38px !important;
            line-height: 1.15 !important;
            margin-bottom: 18px !important;
        }

        .design-why-left p {
            font-size: 16px !important;
            line-height: 1.7 !important;
            margin-bottom: 22px !important;
        }

    .design-why-btn {
        padding: 14px 24px !important;
        font-size: 15px !important;
    }

    /* RIGHT SIDE */
    .design-why-right {
        width: 58% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    /* CARD */
    .why-card-design {
        display: flex !important;
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 22px 20px !important;
        border-radius: 22px !important;
        min-height: auto !important;
    }

        /* ICON */
        .why-card-design i {
            width: 48px !important;
            height: 48px !important;
            min-width: 48px !important;
            font-size: 18px !important;
            border-radius: 14px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* TEXT */
        .why-card-design h3 {
            font-size: 22px !important;
            line-height: 1.25 !important;
            margin-bottom: 6px !important;
        }

        .why-card-design p {
            font-size: 15px !important;
            line-height: 1.6 !important;
            margin: 0 !important;
        }

    .why-v2-left h2 {
        font-size: 38px !important;
        line-height: 1.2;
        color: #0f172a;
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        background-position: center;
    }

    .hero-content {
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

        .hero-text h1 span {
            font-size: 32px;
        }
}

/* ===============================
   SERVICES GRID FIX
================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===============================
   ABOUT HELIX FIX
================================= */

@media (max-width: 1024px) {

    .about-glass-card h1 {
        font-size: 40px;
        color: #fff;
        margin: 20px 0;
    }

    .pvk-badge {
        color: #00bcd4;
        font-weight: 800;
        letter-spacing: 3px;
        font-size: 14px;
    }

    .vector img {
        position: absolute;
        top: -3%;
        left: 10px;
        height: 350px;
    }

    .panel {
        width: 50%;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
    }

    .cta-box h2 {
        font-size: 37px;
        font-weight: bold;
    }

    .helix-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        /* पहले 100px था */
    }

    .helix-cards {
        height: 420px;
        /* थोड़ा छोटा */
    }

    .h-card {
        width: 220px;
        /* पहले 280px */
        padding: 20px;
    }

        .h-card i {
            font-size: 1.5rem;
        }

        .h-card h4 {
            font-size: 1rem;
        }

        .h-card p {
            font-size: 0.8rem;
        }

    /* positions adjust (compact layout) */
    .c1 {
        top: 0;
        left: 0;
    }

    .c2 {
        top: 100px;
        left: 80px;
    }

    .c3 {
        top: 200px;
        left: 160px;
    }

    .about-helix {
        padding: 90px 0;
        position: relative;
        background-color: #030303;
    }

    .holo-testimonial {
        height: 74vh;
        background: #020617;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        color: #fff;
        font-family: 'JetBrains Mono', monospace;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 0px;
    }

    .title {
        font-size: 40px;
        margin: 20px 0;
        text-align: left;
    }

    .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .process-line {
        position: absolute;
        top: 48%;
        left: 32px;
        width: 100%;
        transform: translateY(-50%);
        z-index: 1;
        opacity: 0.3;
    }

    .process-section {
        /* padding: 80px 0; */
        text-align: center;
        overflow: hidden;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .container {
        max-width: 1320px;
        padding-left: 40px;
        padding-right: 40px;
    }

    /* HERO SECTION */
    .web-hero {
        padding: 90px 0 70px;
    }

    .web-hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 70px;
    }

    .web-hero-text {
        width: 72%;
    }

        .web-hero-text h1 {
            font-size: 58px;
            line-height: 1.18;
            margin-bottom: 22px;
        }

        .web-hero-text p {
            font-size: 19px;
            line-height: 1.8;
            max-width: 620px;
        }

    .hero-buttons {
        margin-top: 28px;
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .web-hero-image {
        width: 48%;
        text-align: right;
    }

        .web-hero-image img {
            width: 100%;
            max-width: 620px;
            height: auto;
            object-fit: contain;
        }

    /* NAVBAR */
    .nav-flex {
        min-height: 90px;
    }

    .menu {
        gap: 32px;
    }

        .menu a {
            font-size: 17px;
        }

    .login-btn {
        padding: 14px 24px;
        font-size: 17px;
        display: none;
    }

    .web-showcase {
        padding: 90px 0;
    }

    .showcase-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 70px;
    }

    /* LEFT IMAGE */
    .showcase-image {
        width: 48%;
    }

        .showcase-image img {
            width: 100%;
            max-width: 620px;
            height: 430px;
            object-fit: cover;
            border-radius: 28px;
            display: block;
        }

    /* RIGHT CONTENT */
    .showcase-content {
        width: 52%;
    }

        .showcase-content .tag {
            font-size: 15px;
            letter-spacing: 3px;
            margin-bottom: 18px;
            display: inline-block;
        }

        .showcase-content h2 {
            font-size: 58px;
            line-height: 1.18;
            margin-bottom: 24px;
        }

        .showcase-content p {
            font-size: 20px;
            line-height: 1.8;
            max-width: 640px;
            margin-bottom: 26px;
        }

    .showcase-list {
        margin-bottom: 32px;
    }

        .showcase-list .item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 19px;
            margin-bottom: 16px;
        }

            .showcase-list .item i {
                font-size: 18px;
            }

    .showcase-btn {
        padding: 16px 34px;
        font-size: 18px;
        border-radius: 14px;
    }

    .showcase-content h2 {
        font-size: 36px !important;
        line-height: 1.3;
        color: #0f172a;
    }

    .choose-left h2 {
        font-size: 36px !important;
        line-height: 1.3;
    }

    .web-hero-text h1 {
        font-size: 48px !important;
        line-height: 1.3;
        font-weight: 300;
    }
}

/* ===============================
   GROWTH SECTION FIX
================================= */

@media (max-width: 768px) {
    .growth-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .growth-img {
        width: 100%;
    }
}

/* ===============================
   PROCESS FIX (IMPORTANT)
================================= */



@media (max-width: 768px) {
    .counter-box {
        gap: 20px;
    }
}



/* ===============================
   LOGO SECTION FIX
================================= */

.logo-section p {
    width: 100%;
}

.logo-section h3 {
    white-space: normal;
}

/* ===============================
   CONTACT FIX
================================= */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* =========================================
   GRAPHIC PAGE BENEFITS SECTION
   1024px ALL SMALLER / PERFECT FIT
========================================= */
@media (max-width:1024px) {

    .design-benefits {
        padding: 80px 0 !important;
    }

    .design-benefits-wrap {
        display: flex !important;
        align-items: center !important;
        gap: 38px !important;
    }

    /* LEFT IMAGE SMALL */
    .design-benefits-image {
        width: 44% !important;
    }

        .design-benefits-image img {
            width: 100% !important;
            max-width: 390px !important;
            height: 300px !important;
            object-fit: cover;
            border-radius: 24px;
        }

    /* RIGHT CONTENT */
    .design-benefits-content {
        width: 56% !important;
    }

        .design-benefits-content .mini-tag {
            font-size: 13px !important;
            letter-spacing: 2px !important;
            margin-bottom: 12px !important;
        }

        .design-benefits-content h2 {
            font-size: 38px !important;
            line-height: 1.15 !important;
            margin-bottom: 16px !important;
        }

        .design-benefits-content > p {
            font-size: 16px !important;
            line-height: 1.65 !important;
            margin-bottom: 22px !important;
        }

    .design-hero-content h1 {
        font-size: 50px !important;
        line-height: 1.2;
        color: #fff;
    }

    /* ITEMS SMALL */
    .design-list {
        gap: 16px !important;
    }

    .design-hero-content {
        max-width: 520px !important;
    }

    .design-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

        .design-item i {
            width: 44px !important;
            height: 44px !important;
            min-width: 44px !important;
            font-size: 15px !important;
            border-radius: 14px !important;
        }

        .design-item h4 {
            font-size: 20px !important;
            line-height: 1.25 !important;
            margin-bottom: 4px !important;
        }

        .design-item p {
            font-size: 15px !important;
            line-height: 1.55 !important;
            margin: 0 !important;
        }
}





@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-box {
        padding: 30px;
    }

    .topbar .container {
        gap: 8px;
        text-align: center;
    }

    /* NAVBAR */
    .nav-flex {
        position: relative;
    }

    .logo img {
        width: 60px;
        height: auto;
    }

    .hamburger {
        display: block;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 20px;
        gap: 20px;
        transition: 0.3s;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

        .menu.active {
            right: 0;
        }

    .login-btn {
        display: none;
    }

    /* HERO */
    .hero {
        text-align: center;
        padding: 60px 0;
        background-position: center;
    }

    .hero-content {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

        .hero-text h1 span {
            font-size: 36px;
        }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* HELIX */
    .helix-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .helix-cards {
        position: relative;
        height: 370px;
        left: 30%;
        gap: 50px;
        margin-top: 50px;
    }

    /* GROWTH */
    .growth-box {
        flex-direction: column;
        text-align: center;
        padding: 0px 30px
    }

    .growth-img {
        width: 100%;
    }




    /* LOGO SECTION */
    .logo-section h2 {
        font-size: 40px;
    }

    .logo-section h3 {
        font-size: 24px;
        white-space: normal;
    }

    .logo-section p {
        width: 100%;
    }

    /* CONTACT */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-box {
        padding: 30px;
    }

    /* CTA */
    .cta-box h2 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 14px 30px;
    }

    .counter-item h2 {
        font-size: 50px;
        font-weight: bold;
    }

    .counter-item p {
        margin-top: 8px;
        font-size: 18px;
        color: #dfefff;
        font-weight: 700;
    }

    .step-content {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        /* border: 1px solid rgba(255, 255, 255, 0.1); */
        border-radius: 50%;
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 3px solid var(--step-color);
    }

        .step-content h3 {
            font-size: 14px;
            margin: 0;
            line-height: 1.4;
            color: black;
        }

    .process-line {
        position: absolute;
        top: 57%;
        left: 33px;
        width: 90%;
        transform: translateY(-50%);
        z-index: 1;
        opacity: 0.3;
    }

    .process-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        height: 400px;
        padding: 0px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        font-weight: 200;
        font-size: 42px;
        color: black;
    }

    .growth-content h2 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .growth-content {
        width: 100%;
        text-align: left;
    }

        .growth-content.show h2 {
            opacity: 1;
            transform: translateY(0);
            width: 50%;
        }

    .vector img {
        position: absolute;
        top: 7%;
        left: 20px;
        height: 310px;
    }

    .section-header h2 {
        font-size: 42px;
        font-weight: 600;
        color: #222;
        white-space: inherit;
    }

    .hero {
        min-height: auto;
        padding: 50px 0;
        background-position: center;
        background-size: cover;
        text-align: center;
    }

    .hero-content {
        justify-content: center;
        padding: 0 20px;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

        .hero-text h1 {
            font-size: 32px;
            line-height: 1.4;
        }

            .hero-text h1 span {
                font-size: 36px;
                display: block;
                /* 🔥 break line for better look */
            }

        .hero-text p {
            font-size: 14px;
            line-height: 1.6;
            margin: 20px 0;
            padding: 0 10px;
        }

    .hero-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 26px;
        font-size: 14px;
    }

    .main-footer {
        padding: 70px 20px 30px;
    }

    /* GRID → 2 COLUMN */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* COLUMN FIX */
    .footer-col {
        width: 100%;
    }

        /* HEADINGS */
        .footer-col h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        /* TEXT */
        .footer-col p {
            font-size: 14px;
            line-height: 1.6;
        }

        /* LINKS */
        .footer-col ul li {
            margin-bottom: 10px;
        }

            .footer-col ul li a {
                font-size: 14px;
            }

    /* SOCIAL */
    .social-links {
        margin-top: 15px;
    }

    /* NEWSLETTER FIX */
    .subscribe-box {
        flex-direction: column;
        gap: 10px;
    }

        .subscribe-box input {
            width: 100%;
            padding: 12px;
        }

        .subscribe-box button {
            width: 100%;
            height: 45px;
        }

    /* FOOTER BOTTOM */
    .footer-bottom {
        gap: 15px;
        text-align: center;
    }

    .bottom-links {
        margin-top: 5px;
    }

        .bottom-links a {
            margin: 0 10px;
        }

    .logo-section p {
        width: 100%;
    }

    .main-footer {
        height: auto;
        min-height: auto;
    }

    .main-footer {
        padding: 80px 20px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .holo-testimonial {
        height: 114vh;
        background: #020617;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        color: #fff;
        font-family: 'JetBrains Mono', monospace;
    }

    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hamburger {
        display: block;
        color: #000;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* 🔥 hidden by default */
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        gap: 20px;
        transition: 0.4s ease;
        z-index: 999;
    }

        .menu a {
            font-size: 16px;
        }

        /* ACTIVE MENU */
        .menu.active {
            right: 0;
            /* 🔥 slide in */
        }

    .hamburger {
        display: block;
        color: #3b82f6;
    }

    .process-section {
        /* padding: 80px 0; */
        text-align: center;
        overflow: hidden;
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .counter {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .about-hero-content {
        align-items: center;
        text-align: center;
    }

    .about-hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 35px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .story-card {
        display: none;
    }

    .faq-question {
        width: 100%;
        background: #fff;
        border: none;
        padding: 16px 28px !important;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        color: #0f172a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .web-hero {
        padding: 70px 0 55px;
    }

    .web-hero-content {
        display: flex;
        flex-direction: column;
        gap: 45px;
        align-items: center;
        text-align: left;
    }

    /* TEXT */
    .web-hero-text {
        width: 100%;
    }

        .web-hero-text .tag {
            font-size: 14px;
            padding: 8px 16px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .web-hero-text h1 {
            font-size: 64px;
            line-height: 1.12;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .web-hero-text p {
            font-size: 19px;
            line-height: 1.8;
            max-width: 100%;
            margin-bottom: 28px;
        }

    /* BUTTONS */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

        .hero-buttons a {
            padding: 15px 28px;
            font-size: 17px;
        }

    /* IMAGE */
    .web-hero-image {
        width: 100%;
        text-align: center;
    }

        .web-hero-image img {
            width: 100%;
            max-width: 520px;
            height: auto;
            object-fit: contain;
        }

        .web-hero-image img {
            width: 100% !important;
            max-width: 100%;
            animation: float 4s ease-in-out infinite;
            height: 400px;
            border-radius: 20px;
        }

    .web-hero-text {
        max-width: 600px;
        color: #fff;
        /* align-items: center; */
        text-align: center !important;
    }

    .web-hero-text {
        max-width: 100% !important;
        color: #fff;
    }

    .web-showcase {
        padding: 70px 0;
    }

    .showcase-wrap {
        display: flex;
        flex-direction: column-reverse;
        /* content up, image niche */
        gap: 40px;
        align-items: center;
    }

    /* IMAGE */
    .showcase-image {
        width: 100%;
        text-align: center;
    }

        .showcase-image img {
            width: 100%;
            max-width: 520px;
            height: auto;
            border-radius: 28px;
            object-fit: cover;
            display: block;
            margin: 0 auto;
        }

    /* CONTENT */
    .showcase-content {
        width: 100%;
        text-align: left;
    }

        .showcase-content .tag {
            font-size: 14px;
            letter-spacing: 3px;
            margin-bottom: 18px;
            display: inline-block;
        }

        .showcase-content h2 {
            font-size: 56px;
            line-height: 1.15;
            margin-bottom: 22px;
        }

        .showcase-content p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 24px;
            max-width: 100%;
        }

    /* LIST */
    .showcase-list {
        margin-bottom: 28px;
    }

        .showcase-list .item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 18px;
            margin-bottom: 14px;
            line-height: 1.5;
        }

            .showcase-list .item i {
                font-size: 16px;
                margin-top: 6px;
            }

    /* BUTTON */
    .showcase-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 15px 28px;
        font-size: 17px;
        border-radius: 14px;
    }

    .showcase-wrap {
        display: flex;
        /* justify-content: space-between; */
        gap: 60px;
    }

    .showcase-image img {
        /* width: 630px; */
        width: 100% !important;
        border-radius: 20px;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px;
    }

    .project-card {
        width: 100%;
    }

        .project-card img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            display: block;
        }

    .project-card {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        height: 360px !important;
        cursor: pointer;
    }

    .why-choose {
        padding: 70px 0;
    }

    .choose-wrap {
        display: flex;
        flex-direction: column;
        gap: 45px;
        align-items: flex-start;
    }

    /* LEFT CONTENT */
    .choose-left {
        width: 100%;
    }

        .choose-left .mini-tag {
            font-size: 14px;
            letter-spacing: 3px;
            margin-bottom: 18px;
            display: inline-block;
        }

        .choose-left h2 {
            font-size: 52px;
            line-height: 1.15;
            margin-bottom: 22px;
        }

        .choose-left p {
            font-size: 18px;
            line-height: 1.75;
            max-width: 100%;
            margin-bottom: 28px;
        }

    .choose-btn {
        display: inline-flex;
        padding: 15px 30px;
        font-size: 17px;
        border-radius: 14px;
    }

    /* RIGHT GRID */
    .choose-right {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .choose-card {
        min-height: 260px;
        padding: 28px 22px;
        border-radius: 24px;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center !important;
    }

    .choose-card i {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .choose-card h3 {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .choose-card p {
        font-size: 16px;
        line-height: 1.65;
    }

    .choose-left {
        max-width: 520px;
        text-align: center !important;
    }

    /* GLOBAL */
    html,
    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    /* ======================
   TOPBAR
====================== */

    /* ======================
   NAVBAR
====================== */
    .nav-flex {
        min-height: 72px;
    }

    .logo img {
        max-width: 150px;
    }

    .hamburger {
        display: flex;
        font-size: 26px;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        height: 100vh;
        background: #06111f;
        flex-direction: column;
        padding: 90px 28px 30px;
        gap: 22px;
        transition: .35s ease;
        z-index: 999;
    }

        .menu.active {
            right: 0;
        }

        .menu a {
            font-size: 18px;
            color: #fff;
        }

    .login-btn {
        display: none;
    }

    /* ======================
   HERO
====================== */
    .web-hero {
        padding: 55px 0 45px;
    }

    .web-hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .web-hero-text,
    .web-hero-image {
        width: 100%;
    }

        .web-hero-text h1 {
            font-size: 42px;
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .web-hero-text p {
            font-size: 16px;
            line-height: 1.7;
        }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

        .hero-buttons a {
            width: 50%;
            justify-content: center;
            text-align: center;
        }

    .web-hero-image img {
        width: 100%;
        max-width: 100%;
    }

    /* ======================
   SHOWCASE
====================== */
    .web-showcase {
        padding: 55px 0;
    }

    .showcase-wrap {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .showcase-content,
    .showcase-image {
        width: 100%;
    }

        .showcase-content h2 {
            font-size: 34px;
            line-height: 1.2;
        }

        .showcase-content p {
            font-size: 16px;
        }

    .showcase-list .item {
        font-size: 16px;
    }

    .showcase-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .showcase-image img {
        width: 100%;
        height: auto;
    }

    /* ======================
   PROCESS
====================== */
    .process-section {
        padding: 55px 0;
    }

    .process-wrapper {
        gap: 20px;
    }

    .process-line {
        display: none;
    }

    .process-step {
        position: relative;
        left: auto;
        top: auto;
    }

    /* ======================
   TECH STACK
====================== */
    .tech-premium {
        padding: 55px 0;
    }

    .app-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .tech-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* ======================
   PORTFOLIO
====================== */
    .portfolio-section {
        padding: 55px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-card img {
        height: 260px;
    }

    /* ======================
   WHY CHOOSE
====================== */
    .why-choose {
        padding: 55px 0;
    }

    .choose-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .choose-left,
    .choose-right {
        width: 100%;
    }

        .choose-left h2 {
            font-size: 34px;
        }

        .choose-left p {
            font-size: 16px;
        }

    .choose-btn {
        width: 100%;
        justify-content: center;
    }

    .choose-right {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .choose-card {
        min-height: auto;
    }

    /* ======================
   TESTIMONIAL
====================== */
    .parallax-testi-section {
        padding: 55px 0;
    }

    .glass-card {
        padding: 22px;
    }

    .client-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* ======================
   FAQ
====================== */
    .faq-section {
        padding: 55px 0;
    }

    .process-section {
        padding: 100px 0 !important;
    }

    .process-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
        text-align: center !important;
    }

    .step-number {
        font-size: 46px !important;
        margin-bottom: 14px !important;
    }

    .step-content {
        width: 170px !important;
        height: 170px !important;
        margin: 0 auto !important;
    }

        .step-content h3 {
            font-size: 17px !important;
            line-height: 1.4 !important;
            padding: 0 12px;
        }

    .section-title {
        margin-bottom: 55px !important;
    }

    .faq-question {
        font-size: 16px;
        line-height: 1.5;
    }

    /* ======================
   FOOTER
====================== */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        gap: 14px;
        text-align: center;
    }

    /* ======================
   FLOATING ICONS
====================== */
    .floating-contact {
        right: 12px;
        gap: 12px;
    }

    .fc-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    /* ======================
   SCROLL TOP
====================== */
    .scroll-indicator {
        right: 12px;
        bottom: 12px;
        transform: scale(.82);
    }

    /* ======================
   COMMON HEADINGS
====================== */
    .section-header h2,
    .section-title,
    .main-title,
    h2 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    p {
        word-break: break-word;
    }

    img {
        max-width: 100%;
    }

    .web-hero-text h1 {
        font-size: 38px !important;
        line-height: 1.3;
        font-weight: 300;
    }

    .web-hero-image img {
        width: 500px;
        max-width: 100%;
        animation: float 4s ease-in-out infinite;
        border-radius: 20px;
    }

    .web-showcase {
        padding-top: 60px !important;
        padding-bottom: 0px !important;
        background: #ffffff;
    }

    .showcase-content {
        max-width: 520px;
        text-align: center !important;
    }

    .showcase-list .item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        justify-content: center !important;
    }

    .web-hero,
    .web-showcase,
    .process-section,
    .tech-premium,
    .portfolio-section,
    .why-choose,
    .parallax-testi-section,
    .faq-section,
    .holo-testimonial,
    .about-hero,
    .about-story,
    .mission-vision,
    .team-section,
    .contact-section {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .process-section {
        padding: 100px 0 !important;
    }

    .process-wrapper {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 40px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .process-line {
        display: none !important;
    }

    .faq-question {
        width: 100%;
        background: #fff;
        border: none;
        padding: 24px 28px;
        text-align: left;
        font-size: 16px !important;
        font-weight: 600;
        color: #0f172a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .step-content {
        width: 160px !important;
        height: 160px !important;
        margin: auto;
    }

    .step-number {
        font-size: 48px !important;
    }

    .section-title {
        margin-bottom: 60px !important;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* COMMON SECTION GAP */
    .app-hero,
    .app-benefits,
    .app-services,
    .process-section,
    .app-tech,
    .app-portfolio-pro,
    .app-why,
    .parallax-testi-section,
    .faq-section,
    .holo-testimonial {
        padding: 100px 0 !important;
    }

    /* ================= HERO ================= */
    .app-hero-wrap {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .app-hero-content,
    .app-hero-image {
        width: 100%;
    }

        .app-hero-content h1 {
            font-size: 54px;
            line-height: 1.12;
        }

        .app-hero-content p {
            font-size: 18px;
            line-height: 1.8;
        }

    .hero-stats {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }


    .app-hero-image {
        text-align: center;
    }

        .app-hero-image img {
            max-width: 520px;
            width: 100%;
        }

    /* ============== BENEFITS ============== */
    .benefits-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 45px;
    }

    .benefits-image,
    .benefits-content {
        width: 100%;
    }

    .benefits-image {
        text-align: center;
    }

        .benefits-image img {
            max-width: 420px;
        }

    .benefits-content h2 {
        font-size: 48px;
        line-height: 1.15;
    }

    .benefit-item {
        gap: 16px;
    }

    /* ============== SERVICES ============== */
    .app-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .app-card {
        padding: 28px 22px;
    }

    /* ============== PROCESS ============== */
    .process-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
    }

    .app-hero-image img {
        width: 100% !important;
        max-width: 100%;
        animation: floatPhone 4s ease-in-out infinite;
        height: 400px;
        border-radius: 20px;
    }

    .step-content {
        width: 170px !important;
        height: 170px !important;
        margin: auto;
    }

    .hero-stats {
        display: flex;
        gap: 45px;
        margin-top: 40px;
        justify-content: center !important;
    }

    /* ============== TECH ============== */
    .app-tech-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* ============== PORTFOLIO ============== */
    .app-project-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .app-project-card img {
        height: 320px;
        object-fit: cover;
    }

    /* ============== WHY CHOOSE ============== */
    .app-why-wrap {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .app-why-left,
    .app-why-right {
        width: 100%;
    }

        .app-why-left h2 {
            font-size: 48px;
        }

    .app-why-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* ============== TESTIMONIAL ============== */
    .glass-card {
        padding: 28px;
    }

    .review-text {
        font-size: 17px;
        line-height: 1.7;
    }

    /* ============== FAQ ============== */
    .faq-question {
        font-size: 18px;
    }

    /* ============== FOOTER ============== */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-bottom {
        gap: 14px;
        text-align: center;
    }

    /* COMMON HEADINGS */
    .section-header h2,
    .section-title,
    .main-title {
        font-size: 36px !important;
        line-height: 1.2;
    }

    .app-hero-content {
        max-width: 580px;
        text-align: center !important;
    }

    .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .app-hero-content h1 {
        font-size: 38px !important;
        line-height: 1.2;
        color: #fff;
    }

    .app-tech-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .app-project-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .app-why-left {
        max-width: 520px;
        text-align: center !important;
    }

    .app-tech-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .app-project-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .app-why-right {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 25px;
    }

    .section-header h2,
    .section-title,
    .main-title {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .app-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .app-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .app-card {
        width: 100%;
        min-height: 280px;
        padding: 28px 22px;
    }

        .app-card h3 {
            font-size: 30px;
            line-height: 1.2;
        }

        .app-card p {
            font-size: 17px;
            line-height: 1.7;
        }

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* SAME GAP */
    .uiux-hero,
    .uiux-benefits,
    .uiux-services,
    .process-section,
    .uiux-portfolio,
    .uiux-why,
    .parallax-testi-section,
    .faq-section,
    .holo-testimonial {
        padding: 100px 0 !important;
    }

    /* ================= HERO ================= */
    .uiux-hero-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important;
        align-items: center;
    }

    .uiux-hero-content,
    .uiux-hero-image {
        width: 100% !important;
    }

    .uiux-hero-content {
        text-align: center;
    }

        .uiux-hero-content h1 {
            font-size: 52px !important;
            line-height: 1.12 !important;
        }

        .uiux-hero-content p {
            font-size: 18px !important;
            line-height: 1.8 !important;
            max-width: 680px;
            margin: auto;
        }

    .hero-btns {
        justify-content: center;
        margin-top: 28px;
    }

    .hero-stats {
        gap: 18px;
        margin-top: 32px;
    }

    .uiux-hero-image img {
        width: 100%;
        max-width: 540px;
        border-radius: 26px;
    }

    /* ================= BENEFITS ================= */
    .uiux-benefits-wrap {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 45px !important;
    }

    .uiux-benefits-image,
    .uiux-benefits-content {
        width: 100% !important;
    }

        .uiux-benefits-content h2 {
            font-size: 46px !important;
            line-height: 1.15 !important;
        }

        .uiux-benefits-content p {
            font-size: 18px;
        }

    .uiux-benefits-image {
        text-align: center;
    }

        .uiux-benefits-image img {
            width: 100%;
            max-width: 520px;
            border-radius: 24px;
        }

    /* ================= SERVICES ================= */
    .uiux-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .uiux-card {
        padding: 28px 22px;
        min-height: 250px;
    }

        .uiux-card h3 {
            font-size: 26px;
        }

    /* ================= PROCESS ================= */
    .process-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        height: auto !important;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
    }

    .step-content {
        width: 170px !important;
        height: 170px !important;
        margin: auto;
    }

    /* ================= PORTFOLIO ================= */
    .uiux-portfolio-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .uiux-item-port.large,
    .uiux-item-port.wide {
        grid-column: auto !important;
    }

    .uiux-item-port img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    /* ================= WHY CHOOSE ================= */
    .uiux-why-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 45px !important;
    }

    .uiux-why-left,
    .uiux-why-right {
        width: 100% !important;
    }

        .uiux-why-left h2 {
            font-size: 46px !important;
        }

        .uiux-why-left p {
            font-size: 18px;
        }

    .uiux-why-right {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .why-card-uiux {
        padding: 24px 20px;
        min-height: 220px;
    }

    /* ================= FOOTER ================= */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 35px;
    }

    .footer-bottom {
        gap: 14px;
        text-align: center;
    }

    /* COMMON */
    .section-header h2,
    .section-title,
    .main-title {
        font-size: 42px !important;
        line-height: 1.2;
    }

    .uiux-hero-image img {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 24px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
        animation: floatUI 4s ease-in-out infinite;
        height: auto !important;
    }
}



/* ===============================
   FOOTER BACKGROUND GRID FIX
================================= */

.main-footer {
    position: relative;
    overflow: hidden;
}

/* background grid */
.footer-grid-bg {
    position: absolute;
    top: 0;
    /* 🔥 यही main fix */
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* content के पीछे */
}

/* footer content */
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 2;
    /* content ऊपर रहेगा */
}

/* ===============================
   SERVICES MOBILE (480px)
================================= */

@media (max-width: 480px) {

    .services-area {
        padding: 60px 15px;
    }

    /* HEADER */
    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
        white-space: normal;
        /* 🔥 nowrap हटाया */
    }

    .section-header p {
        font-size: 13px;
        margin-top: 10px;
    }

    /* GRID → 1 column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CARD */
    .service-card {
        padding: 20px;
        border-radius: 16px;
    }

    /* ICON */
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    /* TITLE */
    .card-info h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    /* TEXT */
    .card-info p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    /* LINK */
    .read-more {
        font-size: 12px;
    }

    .glitch-text {
        font-size: 30px;
        font-weight: 700;
        position: relative;
        color: #fff;
        margin-bottom: 20px;
    }

    .helix-content p {
        color: #94a3b8;
        font-size: 14px;
        line-height: 1.8;
    }

    .helix-cards {
        position: relative;
        height: 370px;
        left: 4%;
        gap: 50px;
        margin-top: 50px;
    }

    .growth {
        padding: 40px 0px 0px 0px;
    }

    .growth-box {
        flex-direction: column;
        /* 🔥 सबसे important */
        padding: 20px 20px;
        border-radius: 25px;
        gap: 20px;
        text-align: left;
    }

    /* IMAGE FIX */
    .growth-img {
        width: 100%;
        text-align: center;
    }

        .growth-img img {
            width: 80%;
            max-width: 250px;
        }

    /* VECTOR REMOVE (mobile clean) */
    .vector img {
        display: none;
    }

    /* HEADING */
    .growth-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    /* LIST */
    .growth-content li {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .growth-content.show h2 {
        opacity: 1;
        transform: translateY(0);
        width: 100%;
    }

    .counter-item h2 {
        font-size: 22px;
        font-weight: bold;
    }

    .counter-item p {
        margin-top: 8px;
        font-size: 14px;
        color: #dfefff;
        font-weight: 700;
    }

    .counter-box {
        border-radius: 20px;
        padding: 20px 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
        color: #fff;
    }

    .logo-section h2 {
        font-size: 30px;
    }

    .logo-section p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        width: 1090px;
        margin-bottom: 10px;
    }

    .logo-card {
        margin: 0px;
        width: 150px;
    }

    .logo-section {
        padding: 40px 0;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box p {
        margin: 15px 0 30px;
        font-size: 14px;
        color: #f3e9ff;
    }

    .cta-box {
        text-align: center;
        padding: 30px 20px;
        border-radius: 30px;
        color: #fff;
        background: linear-gradient(to right, #EE5A32, #EE415B, #AF1B8B, #6505A0);
        position: relative;
        overflow: hidden;
    }

    .parallax-testi-section {
        padding: 200px 15px;
    }

    /* HEADER */
    .main-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 30px;
    }

    /* SWIPER */
    .parallaxSwiper {
        width: 100%;
    }

    /* CARD */
    .glass-card {
        padding: 20px;
        border-radius: 20px;
    }

    /* CONTENT */
    .card-content {
        gap: 15px;
    }

    /* CLIENT BOX */
    .client-box {
        gap: 10px;
    }

        .client-box img {
            width: 45px;
            height: 45px;
        }

    .client-details h3 {
        font-size: 14px;
    }

    .client-details span {
        font-size: 11px;
    }

    /* TEXT */
    .review-text {
        font-size: 13px;
        line-height: 1.5;
    }

    /* CARD NUMBER */
    .card-number {
        font-size: 40px;
        opacity: 0.1;
    }

    /* CONTROLS */
    .swiper-controls {
        margin-top: 40px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
        /* 🔥 arrows hide for mobile */
    }

    .swiper-pagination {
        position: static;
        margin-top: 10px;
    }

    .parallax-testi-section {
        background: #010409;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-top: 100px;
    }

    .contact-section {
        padding: 80px 20px;
        background: radial-gradient(circle at bottom left, rgba(0, 123, 255, 0.1), transparent);
    }

    .main-footer {
        padding: 50px 15px 20px;
        text-align: center;
    }

    /* 1 column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* CENTER ALL */
    .footer-col {
        align-items: center;
    }

        .footer-col h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* TEXT */
        .footer-col p {
            font-size: 13px;
            line-height: 1.6;
        }

        /* LINKS */
        .footer-col ul {
            padding: 0;
        }

            .footer-col ul li {
                margin-bottom: 8px;
            }

                .footer-col ul li a {
                    font-size: 13px;
                }

    /* SOCIAL */
    .social-links {
        justify-content: center;
    }

    /* SUBSCRIBE */
    .subscribe-box {
        flex-direction: column;
        gap: 10px;
    }

        .subscribe-box input {
            width: 100%;
            padding: 12px;
        }

        .subscribe-box button {
            width: 100%;
            height: 45px;
        }

    /* BOTTOM */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .web-hero-image img {
        height: auto !important;
    }

    .showcase-content h2 {
        font-size: 34px !important;
        line-height: 1.3;
        color: #0f172a;
    }

    .bottom-links {
        margin-top: 5px;
    }

    .tech-premium-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .bottom-links a {
        margin: 0 8px;
        font-size: 12px;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .choose-right {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 25px;
    }

    .why-choose {
        padding: 60px 0 !important;
        background: #020617;
        color: #fff;
    }

    .tech-premium {
        padding: 60px 0 !important;
        background: #020617;
        color: #fff;
    }

    .main-footer {
        padding: 60px 20px 30px;
        /* 🔥 padding बढ़ाया */
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* GRID */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-section {
        padding: 60px 0 !important;
        background: #f8fafc;
    }

    /* COLUMN FIX */
    .footer-col {
        width: 100%;
        padding: 0;
    }

        /* HEADING */
        .footer-col h3 {
            margin-bottom: 15px;
        }

        /* LIST */
        .footer-col ul {
            padding: 0;
        }

        /* IMPORTANT FIX */
        .logo-section p,
        .footer-col p {
            width: 100%;
            /* 🔥 force full width */
        }

    .holo-testimonial {
        height: 174vh;
        background: #020617;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        color: #fff;
        font-family: 'JetBrains Mono', monospace;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 🔥 main fix */
    }

        /* heading underline center */
        .footer-col h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* LINKS CENTER */
        .footer-col ul {
            padding: 0;
            text-align: center;
        }

    /* SOCIAL ICONS CENTER */
    .social-links {
        justify-content: center;
    }

    /* NEWSLETTER CENTER */
    .subscribe-box {
        justify-content: center;
        width: 100%;
    }

        /* INPUT TEXT ALIGN */
        .subscribe-box input {
            text-align: center;
        }

    /* BOTTOM */
    .footer-bottom {
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
        display: flex;
    }

    .topbar .container {
        flex-direction: column;
        /* 🔥 main fix */
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .topbar-left,
    .topbar-right {
        flex-wrap: wrap;
        /* 🔥 wrap allow */
        justify-content: center;
        gap: 10px;
    }

    .topbar a {
        font-size: 12px;
    }

    /* icons spacing */
    .topbar i {
        margin-right: 5px;
    }

    .process-wrapper {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 40px;
        padding: 0 10px;
    }

    /* line हटाओ */
    .process-line {
        display: none;
    }

    /* STEP */
    .process-step {
        width: 100%;
        text-align: center;
        transform: none !important;
    }

    /* NUMBER */
    .step-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    /* CIRCLE */
    .step-content {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        margin: 0 auto;
    }

        .step-content h3 {
            font-size: 14px;
            line-height: 1.4;
        }

    /* zig-zag हटाओ */
    .step-up,
    .step-down {
        transform: none !important;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        font-weight: 200;
        font-size: 24px;
        color: black;
    }

    .about-glass-card h1 {
        font-size: 24px;
        color: #fff;
        margin: 20px 0;
    }

    .about-glass-card p {
        color: #94a3b8;
        line-height: 1.7;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .s-box b {
        font-size: 22px;
        color: #fff;
        display: block;
    }

    .s-box span {
        color: #00bcd4;
        font-size: 16px;
        font-weight: 700;
    }

    .about-glass-card {
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 188, 212, 0.3);
        padding: 30px;
        border-radius: 40px;
        text-align: center;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    }

    .panel {
        width: 50%;
        height: 80vh;
        position: sticky;
        top: 0;
        overflow: hidden;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* extra safety */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 20px;
        gap: 20px;
        transition: 0.4s ease;
        z-index: 999;
    }

    .hamburger {
        display: block;
        color: #3b82f6;
    }

    .process-section {
        /* padding: 80px 0; */
        text-align: center;
        overflow: hidden;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .counter-box {
        grid-template-columns: 1fr 1fr;
        /* 🔥 2 column */
        gap: 20px;
        padding: 30px 10px;
    }

    .counter-item h2 {
        font-size: 36px;
        /* पहले 78px था ❌ */
    }

    .counter-item p {
        font-size: 12px;
    }

    .hero-text h1 span {
        font-size: 31px;
        display: block;
    }

    .title {
        font-size: 27px;
        margin: 20px 0;
        text-align: left;
    }

    .h-card {
        width: 220px;
        padding: 10px;
    }

        .h-card h4 {
            font-size: 16px;
        }

    .helix-cards {
        position: relative;
        height: 370px;
        left: 0%;
        gap: 50px;
        margin-top: 50px;
    }

    .showcase-content {
        max-width: 520px;
        text-align: center !important;
    }

    .showcase-list .item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        justify-content: center !important;
    }

    .app-services-grid {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
    }
}



.main-footer {
    overflow: visible;
    /* ❌ hidden हटाओ */
}

.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-glow {
    z-index: 0;
}



/* ===============================
   STICKY HEADER + TOPBAR
================================= */

/* ===============================
   COUNTER MOBILE (320px FIX)
================================= */

@media (max-width: 375px) {

    .counter-box {
        grid-template-columns: 1fr 1fr;
        /* 🔥 2 column */
        gap: 20px;
        padding: 30px 10px;
    }

    .counter-item h2 {
        font-size: 36px;
        /* पहले 78px था ❌ */
    }

    .counter-item p {
        font-size: 12px;
    }

    a.cta-btn {
        white-space: nowrap;
    }

    .hero-text h1 span {
        font-size: 23px;
        display: block;
    }

    .hero-text h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .helix-cards {
        position: relative;
        height: 370px;
        left: -5%;
        gap: 50px;
        margin-top: 50px;
    }

    .mv-tags {
        display: flex;
        gap: 5px !important;
        flex-wrap: wrap;
    }

    .section-header h2,
    .section-title,
    .main-title,
    h2 {
        font-size: 24px !important;
        line-height: 1.2;
    }
}

@media (max-width: 320px) {

    .counter-box {
        grid-template-columns: 1fr 1fr;
        /* 🔥 2 column */
        gap: 20px;
        padding: 30px 10px;
    }

    .counter-item h2 {
        font-size: 36px;
        /* पहले 78px था ❌ */
    }

    .counter-item p {
        font-size: 12px;
    }

    a.cta-btn {
        white-space: nowrap;
    }

    .hero-text h1 span {
        font-size: 23px;
        display: block;
    }

    .hero-text h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section-header h2,
    .section-title,
    .main-title,
    h2 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .app-services-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}


.web-hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    position: relative;
    overflow: hidden;
}

    /* subtle glow */
    .web-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #00bcd4;
        filter: blur(150px);
        opacity: 0.2;
        top: -100px;
        left: -100px;
    }

.web-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT TEXT */
.web-hero-text {
    max-width: 600px;
    color: #fff;
}

    .web-hero-text .tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .web-hero-text h1 {
        font-size: 52px;
        line-height: 1.3;
        font-weight: 300;
    }

        .web-hero-text h1 span {
            font-weight: 700;
            color: #00e0ff;
        }

    .web-hero-text p {
        margin: 20px 0;
        font-size: 16px;
        color: #cbd5e1;
        line-height: 1.6;
    }

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #00bcd4, #3b82f6);
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-primary:hover {
        transform: translateY(-3px);
    }

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-outline:hover {
        background: #fff;
        color: #0f8fa6;
    }

.web-hero-image img {
    width: 500px;
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
    height: 400px;
    border-radius: 20px;
}

/* floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.web-showcase {
    padding: 120px 0;
    background: #ffffff;
}

.showcase-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* IMAGE */
.showcase-image img {
    width: 630px;
    max-width: 100%;
    border-radius: 20px;
}

/* CONTENT */
.showcase-content {
    max-width: 520px;
}

    .showcase-content .tag {
        color: #00bcd4;
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 4px;
        display: inline-block;
    }

    .showcase-content h2 {
        font-size: 42px;
        line-height: 1.3;
        color: #0f172a;
    }

        .showcase-content h2 span {
            color: #00bcd4;
        }

    .showcase-content p {
        margin: 20px 0;
        color: #64748b;
        line-height: 1.6;
    }

/* LIST */
.showcase-list {
    margin: 25px 0;
}

    .showcase-list .item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .showcase-list i {
        color: #00bcd4;
    }

/* BUTTON */
.showcase-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00bcd4, #3b82f6);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

    .showcase-btn:hover {
        transform: translateY(-3px);
    }



.item span {
    color: black;
}



.tech-premium {
    padding: 120px 0;
    background: #020617;
    color: #fff;
}

/* GRID */
.tech-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* CARD */
.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

    /* ICON */
    .tech-card i {
        font-size: 40px;
        margin-bottom: 15px;
        color: #00bcd4;
    }

    /* TEXT */
    .tech-card span {
        font-size: 16px;
    }

    /* 🔥 glow effect */
    .tech-card::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background: #00bcd4;
        filter: blur(100px);
        opacity: 0;
        top: -50px;
        right: -50px;
        transition: 0.4s;
    }

    /* HOVER */
    .tech-card:hover {
        transform: translateY(-10px) scale(1.05);
        border-color: #00bcd4;
    }

        .tech-card:hover::before {
            opacity: 0.2;
        }

.tech-premium .section-header h2 {
    color: #ffffff;
}

.tech-premium .section-header p {
    color: #94a3b8;
}

.tech-premium .section-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.portfolio-section {
    padding: 120px 0;
    background: #f8fafc;
}

/* Heading visible */
.portfolio-head {
    opacity: 1 !important;
    transform: none !important;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 420px;
    cursor: pointer;
}

    .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

/* Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.2));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.4s;
}

    .project-overlay span {
        color: #00bcd4;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .project-overlay h3 {
        color: #fff;
        font-size: 26px;
        margin: 10px 0;
    }

    .project-overlay a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        width: fit-content;
    }

/* Hover */
.project-card:hover img {
    transform: scale(1.08);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose {
    padding: 120px 0;
    background: #020617;
    color: #fff;
}

.choose-wrap {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.choose-left {
    max-width: 520px;
}

.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.choose-left h2 {
    font-size: 44px;
    line-height: 1.3;
}

    .choose-left h2 span {
        color: #00bcd4;
    }

.choose-left p {
    color: #94a3b8;
    margin: 20px 0 30px;
}

.choose-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00bcd4, #3b82f6);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

/* RIGHT */
.choose-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.choose-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    transition: .3s;
}

    .choose-card i {
        font-size: 28px;
        color: #00bcd4;
        margin-bottom: 15px;
    }

    .choose-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .choose-card p {
        color: #94a3b8;
        font-size: 14px;
    }

    .choose-card:hover {
        transform: translateY(-8px);
        border-color: #00bcd4;
    }

.faq-section {
    padding: 120px 0;
    background: #ffffff;
}

/* visible heading */
.faq-head {
    opacity: 1 !important;
    transform: none !important;
}

.faq-wrap {
    max-width: 850px;
    margin: 60px auto 0;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: .3s;
}

    .faq-item:hover {
        border-color: #00bcd4;
    }

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 24px 28px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-question span {
        color: #00bcd4;
        font-size: 24px;
    }

/* answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

    .faq-answer p {
        padding: 0 28px 24px;
        color: #64748b;
        line-height: 1.7;
    }

/* active */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.app-hero {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    overflow: hidden;
}

.app-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.app-hero-content {
    max-width: 580px;
}

.hero-mini-tag {
    display: inline-block;
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.app-hero-content h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #fff;
}

    .app-hero-content h1 span {
        color: #00bcd4;
    }

.app-hero-content p {
    color: #94a3b8;
    margin: 22px 0 35px;
    line-height: 1.7;
    font-size: 17px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-btn-primary,
.app-btn-outline {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.app-btn-primary {
    background: linear-gradient(135deg, #00bcd4, #2563eb);
    color: #fff;
}

.app-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

    .app-btn-primary:hover,
    .app-btn-outline:hover {
        transform: translateY(-4px);
    }

/* Stats */
.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 40px;
}

    .hero-stats h3 {
        color: #fff;
        font-size: 30px;
    }

    .hero-stats span {
        color: #94a3b8;
        font-size: 14px;
    }

.app-hero-image img {
    width: 420px;
    max-width: 100%;
    animation: floatPhone 4s ease-in-out infinite;
    height: 400px;
    border-radius: 20px;
}

@keyframes floatPhone {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.app-benefits {
    padding: 120px 0;
    background: #ffffff;
}

.benefits-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.benefits-image img {
    width: 420px;
    max-width: 100%;
}

.app-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
}

.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.benefits-content h2 {
    font-size: 46px;
    line-height: 1.3;
    color: #0f172a;
}

    .benefits-content h2 span {
        color: #00bcd4;
    }

.benefits-content p {
    color: #64748b;
    margin: 20px 0 30px;
    line-height: 1.7;
}

/* ITEMS */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.benefit-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .benefit-item i {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .benefit-item h4 {
        margin-bottom: 6px;
        color: #0f172a;
    }

    .benefit-item p {
        margin: 0;
        color: #64748b;
    }

.app-services {
    padding: 120px 0;
    background: #f8fafc;
}

/* heading visible */
.app-head {
    opacity: 1 !important;
    transform: none !important;
}

.app-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* Card */
.app-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px;
    transition: .3s;
}

    .app-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
        border-color: #00bcd4;
    }

    .app-card i {
        width: 65px;
        height: 65px;
        border-radius: 18px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
    }

    .app-card h3 {
        font-size: 22px;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .app-card p {
        color: #64748b;
        line-height: 1.7;
    }

.app-tech {
    padding: 120px 0;
    background: #020617;
    color: #fff;
}

/* visible heading */
.app-tech-head {
    opacity: 1 !important;
    transform: none !important;
}

    .app-tech-head h2 {
        color: #fff;
    }

    .app-tech-head p {
        color: #94a3b8;
    }

/* grid */
.app-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* card */
.tech-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: .3s;
    backdrop-filter: blur(10px);
}

    .tech-box:hover {
        transform: translateY(-8px);
        border-color: #00bcd4;
        box-shadow: 0 20px 40px rgba(0, 188, 212, 0.08);
    }

    .tech-box i {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .tech-box h3 {
        font-size: 22px;
        color: #fff;
    }

.app-portfolio-pro {
    padding: 120px 0;
    background: #f8fafc;
}

/* heading visible */
.app-port-head {
    opacity: 1 !important;
    transform: none !important;
}

.app-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* card */
.app-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    height: 460px;
    cursor: pointer;
}

    .app-project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

/* overlay */
.app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, .95), rgba(2, 6, 23, .15));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: .4s;
}

    .app-overlay span {
        color: #00bcd4;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .app-overlay h3 {
        color: #fff;
        font-size: 28px;
        margin: 10px 0;
    }

    .app-overlay a {
        color: #fff;
        text-decoration: none;
        width: fit-content;
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        font-size: 14px;
    }

/* hover */
.app-project-card:hover img {
    transform: scale(1.08);
}

.app-project-card:hover .app-overlay {
    opacity: 1;
}

.app-why {
    padding: 120px 0;
    background: #020617;
    color: #fff;
}

.app-why-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.app-why-left {
    max-width: 520px;
}

.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
}

.app-why-left h2 {
    font-size: 50px;
    line-height: 1.2;
    margin: 15px 0;
}

    .app-why-left h2 span {
        color: #00bcd4;
    }

.app-why-left p {
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.7;
}

.why-main-btn {
    display: inline-block;
    padding: 15px 28px;
    background: linear-gradient(135deg, #00bcd4, #2563eb);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

/* RIGHT */
.app-why-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 30px;
    border-radius: 22px;
    transition: .3s;
}

    .why-box:hover {
        transform: translateY(-8px);
        border-color: #00bcd4;
    }

    .why-box i {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
    }

    .why-box h3 {
        color: #fff;
        margin-bottom: 8px;
    }

    .why-box p {
        color: #94a3b8;
    }

.app-faq {
    padding: 120px 0;
    background: #ffffff;
}

/* heading visible */
.faq-head-app {
    opacity: 1 !important;
    transform: none !important;
}

.faq-wrap-app {
    max-width: 850px;
    margin: 60px auto 0;
}

.faq-item-app {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: .3s;
}

    .faq-item-app:hover {
        border-color: #00bcd4;
    }

.faq-question-app {
    width: 100%;
    background: #fff;
    border: none;
    padding: 24px 28px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-question-app span {
        color: #00bcd4;
        font-size: 24px;
    }

/* answer */
.faq-answer-app {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

    .faq-answer-app p {
        padding: 0 28px 24px;
        color: #64748b;
        line-height: 1.7;
    }

/* active */
.faq-item-app.active .faq-answer-app {
    max-height: 200px;
}

.faq-item-app.active {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.software-hero {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    overflow: hidden;
}

.software-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.software-hero-content {
    max-width: 580px;
}

.hero-mini-tag {
    display: inline-block;
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.software-hero-content h1 {
    font-size: 50px;
    line-height: 1.2;
    color: #fff;
}

    .software-hero-content h1 span {
        color: #00bcd4;
    }

.software-hero-content p {
    color: #94a3b8;
    margin: 22px 0 35px;
    line-height: 1.7;
    font-size: 17px;
}

/* buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.soft-btn-primary,
.soft-btn-outline {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.soft-btn-primary {
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    color: #fff;
}

.soft-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

    .soft-btn-primary:hover,
    .soft-btn-outline:hover {
        transform: translateY(-4px);
    }

/* stats */
.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 40px;
}

    .hero-stats h3 {
        color: #fff;
        font-size: 30px;
    }

    .hero-stats span {
        color: #94a3b8;
        font-size: 14px;
    }

/* RIGHT IMAGE */
.software-hero-image img {
    width: 560px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    animation: floatDash 4s ease-in-out infinite;
    height: 400px;
}

@keyframes floatDash {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.software-benefits {
    padding: 120px 0;
    background: #ffffff;
}

.software-benefits-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.software-benefits-image img {
    width: 770px;
    /* max-width: 100%; */
    border-radius: 24px;
    height: 460px;
}



.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.software-benefits-content h2 {
    font-size: 46px;
    line-height: 1.3;
    color: #0f172a;
}

    .software-benefits-content h2 span {
        color: #00bcd4;
    }

.software-benefits-content p {
    color: #64748b;
    margin: 20px 0 30px;
    line-height: 1.7;
}

/* LIST */
.software-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.software-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .software-item i {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .software-item h4 {
        margin-bottom: 6px;
        color: #0f172a;
    }

    .software-item p {
        margin: 0;
        color: #64748b;
    }

.software-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc, #eef6ff);
    position: relative;
    overflow: hidden;
}

    /* top glow bg */
    .software-services::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(0, 188, 212, .08);
        border-radius: 50%;
        filter: blur(80px);
        top: -120px;
        right: -100px;
    }

.software-head {
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    z-index: 2;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 65px;
    position: relative;
    z-index: 2;
}

/* premium card */
.software-card {
    position: relative;
    padding: 38px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 15px 40px rgba(15, 23, 42, .06);
    transition: .4s ease;
    overflow: hidden;
}

    /* side glow line */
    .software-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(#00bcd4, #2563eb);
    }

    /* hover */
    .software-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 60px rgba(37, 99, 235, .14);
    }

    /* icon */
    .software-card i {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        box-shadow: 0 15px 30px rgba(0, 188, 212, .22);
    }

    .software-card h3 {
        font-size: 24px;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .software-card p {
        color: #64748b;
        line-height: 1.8;
        font-size: 15px;
    }

.software-card {
    position: relative;
    padding: 38px 32px;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    z-index: 1;
    transition: .4s ease;
}

    /* LEFT to RIGHT Fill Effect */
    .software-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        transition: .5s ease;
        z-index: -1;
    }

    /* Hover pe pura fill */
    .software-card:hover::before {
        left: 0;
    }

    /* Text color white on hover */
    .software-card:hover h3,
    .software-card:hover p,
    .software-card:hover i {
        color: #fff;
    }

    /* Icon style */
    .software-card i {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: .4s;
    }

    /* Icon hover pe white bg */
    .software-card:hover i {
        background: rgba(255, 255, 255, .15);
        border: 1px solid rgba(255, 255, 255, .25);
    }

    /* Heading */
    .software-card h3 {
        font-size: 24px;
        color: #0f172a;
        margin-bottom: 12px;
        transition: .4s;
    }

    /* Paragraph */
    .software-card p {
        color: #64748b;
        line-height: 1.8;
        font-size: 15px;
        transition: .4s;
    }

.industries-section {
    padding: 120px 0;
    background: #f8fafc;
}

.industries-head {
    opacity: 1 !important;
    transform: none !important;
}

.industry-zigzag {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

    /* center line */
    .industry-zigzag::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: #dbeafe;
    }

/* item */
.industry-item {
    width: 46%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .4s;
    position: relative;
}

    .industry-item.left {
        align-self: flex-start;
    }

    .industry-item.right {
        align-self: flex-end;
    }

    .industry-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, .07);
        border-color: #00bcd4;
    }

    .industry-item i {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .industry-item h3 {
        color: #0f172a;
        font-size: 24px;
        margin-bottom: 8px;
    }

    .industry-item p {
        color: #64748b;
        line-height: 1.7;
    }

.why-soft-v2 {
    padding: 120px 0;
    background: #f8fafc;
}

.why-soft-v2-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}



.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
}

.why-v2-left h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #0f172a;
    margin: 15px 0;
}

    .why-v2-left h2 span {
        color: #00bcd4;
    }

.why-v2-left p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* stats */
.why-stats {
    display: flex;
    gap: 18px;
}

.stat-box {
    background: #fff;
    padding: 24px 28px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    min-width: 180px;
}

    .stat-box h3 {
        font-size: 34px;
        color: #0f172a;
    }

    .stat-box span {
        color: #64748b;
        font-size: 14px;
    }

/* RIGHT */
.why-v2-right {
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-strip {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .35s;
}

    .feature-strip:hover {
        transform: translateX(8px);
        border-color: #00bcd4;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    }

    .feature-strip i {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-strip h3 {
        color: #0f172a;
        margin-bottom: 6px;
    }

    .feature-strip p {
        color: #64748b;
        line-height: 1.7;
    }

.marketing-hero {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    overflow: hidden;
}

.marketing-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.marketing-hero-content {
    max-width: 580px;
}

.hero-mini-tag {
    display: inline-block;
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.marketing-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
}

    .marketing-hero-content h1 span {
        color: #00bcd4;
    }

.marketing-hero-content p {
    color: #94a3b8;
    margin: 22px 0 35px;
    line-height: 1.8;
    font-size: 17px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mark-btn-primary,
.mark-btn-outline {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.mark-btn-primary {
    background: linear-gradient(135deg, #00bcd4, #2563eb);
    color: #fff;
}

.mark-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

    .mark-btn-primary:hover,
    .mark-btn-outline:hover {
        transform: translateY(-4px);
    }

/* Stats */
.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 40px;
}

    .hero-stats h3 {
        color: #fff;
        font-size: 30px;
    }

    .hero-stats span {
        color: #94a3b8;
        font-size: 14px;
    }

/* RIGHT */
.marketing-hero-image img {
    width: 560px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    animation: floatMark 4s ease-in-out infinite;
}

@keyframes floatMark {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.marketing-benefits {
    padding: 120px 0;
    background: #ffffff;
}

.marketing-benefits-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.marketing-benefits-image img {
    width: 520px;
    max-width: 100%;
    border-radius: 24px;
    height: 460px;
}


.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.marketing-benefits-content h2 {
    font-size: 46px;
    line-height: 1.3;
    color: #0f172a;
}

    .marketing-benefits-content h2 span {
        color: #00bcd4;
    }

.marketing-benefits-content p {
    color: #64748b;
    margin: 20px 0 30px;
    line-height: 1.8;
}

/* list */
.marketing-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.marketing-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .marketing-item i {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .marketing-item h4 {
        color: #0f172a;
        margin-bottom: 6px;
    }

    .marketing-item p {
        margin: 0;
        color: #64748b;
    }

.marketing-services {
    padding: 120px 0;
    background: #f8fafc;
}

.marketing-head {
    opacity: 1 !important;
    transform: none !important;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* card */
.marketing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 35px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

    /* hover fill */
    .marketing-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        transition: .5s;
        z-index: 0;
    }

    .marketing-card:hover::before {
        left: 0;
    }

    .marketing-card * {
        position: relative;
        z-index: 2;
    }

    .marketing-card:hover h3,
    .marketing-card:hover p,
    .marketing-card:hover i {
        color: #fff;
    }

    .marketing-card:hover {
        transform: translateY(-8px);
    }

    /* icon */
    .marketing-card i {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
    }

    .marketing-card:hover i {
        background: rgba(255, 255, 255, .15);
    }

    .marketing-card h3 {
        color: #0f172a;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .marketing-card p {
        color: #64748b;
        line-height: 1.8;
    }

.marketing-platforms-v3 {
    padding: 120px 0;
    background: #f8fafc;
}

.platform-head-v3 {
    opacity: 1 !important;
    transform: none !important;
}

.platform-strip-grid {
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* strip card */
.strip-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .35s;
}

    .strip-card:hover {
        transform: translateY(-6px);
        border-color: #00bcd4;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    }

    /* icon */
    .strip-card i {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .strip-card span {
        color: #0f172a;
        font-size: 20px;
        font-weight: 600;
    }

.marketing-results-v2 {
    padding: 120px 0;
    background: #f8fafc;
}

.results-v2-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT */
.results-v2-left {
    max-width: 520px;
}

.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
}

.results-v2-left h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #0f172a;
    margin: 15px 0;
}

    .results-v2-left h2 span {
        color: #00bcd4;
    }

.results-v2-left p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.results-btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #00bcd4, #2563eb);
}

/* RIGHT */
.results-v2-right {
    width: 520px;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 18px 0;
}

.metric-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    transition: .35s;
}

    .metric-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
        border-color: #00bcd4;
    }

    .metric-card h3 {
        font-size: 42px;
        color: #0f172a;
        margin-bottom: 8px;
    }

    .metric-card p {
        color: #64748b;
    }

.large {
    background: linear-gradient(135deg, #00bcd4, #2563eb);
}

    .large h3,
    .large p {
        color: #fff;
    }

.wide {
    text-align: center;
}

.marketing-why {
    padding: 120px 0;
    background: #ffffff;
}

.marketing-why-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

/* LEFT */
.marketing-why-left {
    max-width: 520px;
}

.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
}

.marketing-why-left h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #0f172a;
    margin: 15px 0;
}

    .marketing-why-left h2 span {
        color: #00bcd4;
    }

.marketing-why-left p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-btn-marketing {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #00bcd4, #2563eb);
}

/* RIGHT */
.marketing-why-right {
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-line-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .35s;
}

    .why-line-card:hover {
        transform: translateX(8px);
        border-color: #00bcd4;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    }

    .why-line-card i {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-line-card h3 {
        color: #0f172a;
        margin-bottom: 6px;
    }

    .why-line-card p {
        color: #64748b;
        line-height: 1.7;
    }

.design-hero {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    overflow: hidden;
}

.design-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.design-hero-content {
    max-width: 580px;
}

.hero-mini-tag {
    display: inline-block;
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.design-hero-content h1 {
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
}

    .design-hero-content h1 span {
        background: linear-gradient(135deg, #00bcd4, #2563eb, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.design-hero-content p {
    color: #94a3b8;
    margin: 22px 0 35px;
    line-height: 1.8;
    font-size: 17px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.design-btn-primary,
.design-btn-outline {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.design-btn-primary {
    background: linear-gradient(135deg, #00bcd4, #2563eb);
    color: #fff;
}

.design-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

    .design-btn-primary:hover,
    .design-btn-outline:hover {
        transform: translateY(-4px);
    }

/* Stats */
.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 40px;
}

    .hero-stats h3 {
        color: #fff;
        font-size: 30px;
    }

    .hero-stats span {
        color: #94a3b8;
        font-size: 14px;
    }

/* RIGHT IMAGE */
.design-hero-image img {
    width: 560px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    animation: floatDesign 4s ease-in-out infinite;
    height: 400px;
}

@keyframes floatDesign {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.design-benefits {
    padding: 120px 0;
    background: #ffffff;
}

.design-benefits-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.design-benefits-image img {
    width: 520px;
    max-width: 100%;
    border-radius: 24px;
    height: auto;
}


.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.design-benefits-content h2 {
    font-size: 46px;
    line-height: 1.3;
    color: #0f172a;
}

    .design-benefits-content h2 span {
        color: #00bcd4;
    }

.design-benefits-content p {
    color: #64748b;
    margin: 20px 0 30px;
    line-height: 1.8;
}

/* list */
.design-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.design-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .design-item i {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .design-item h4 {
        color: #0f172a;
        margin-bottom: 6px;
    }

    .design-item p {
        margin: 0;
        color: #64748b;
    }

.design-services {
    padding: 120px 0;
    background: #f8fafc;
}

.design-head {
    opacity: 1 !important;
    transform: none !important;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* card */
.design-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 35px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

    /* hover fill bottom to top */
    .design-card::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #00bcd4, #2563eb, #8b5cf6);
        transition: .5s ease;
        z-index: 0;
    }

    .design-card:hover::before {
        bottom: 0;
    }

    .design-card * {
        position: relative;
        z-index: 2;
    }

    .design-card:hover h3,
    .design-card:hover p,
    .design-card:hover i {
        color: #fff;
    }

    .design-card:hover {
        transform: translateY(-8px);
    }

    /* icon */
    .design-card i {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        transition: .4s;
    }

    .design-card:hover i {
        background: rgba(255, 255, 255, .15);
    }

    .design-card h3 {
        color: #0f172a;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .design-card p {
        color: #64748b;
        line-height: 1.8;
    }

.design-portfolio {
    padding: 120px 0;
    background: #f8fafc;
}

.portfolio-head-design {
    opacity: 1 !important;
    transform: none !important;
}

.portfolio-grid-design {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

/* items */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 280px;
}

    .portfolio-item.large {
        grid-column: span 2;
        min-height: 320px;
    }

    .portfolio-item.wide {
        grid-column: span 2;
    }

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

/* overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, .9), rgba(2, 6, 23, .1));
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: .4s;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 6px;
}

.portfolio-overlay span {
    color: #cbd5e1;
}

.design-why {
    padding: 120px 0;
    background: #ffffff;
}

.design-why-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

/* LEFT */
.design-why-left {
    max-width: 520px;
}

.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
}

.design-why-left h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #0f172a;
    margin: 15px 0;
    width: 120%;
}

    .design-why-left h2 span {
        background: linear-gradient(135deg, #00bcd4, #2563eb, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.design-why-left p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.design-why-btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #00bcd4, #2563eb, #8b5cf6);
}

/* RIGHT */
.design-why-right {
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-card-design {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .35s;
}

    .why-card-design:hover {
        transform: translateX(8px);
        border-color: #8b5cf6;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    }

    .why-card-design i {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, #00bcd4, #2563eb, #8b5cf6);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-card-design h3 {
        color: #0f172a;
        margin-bottom: 6px;
    }

    .why-card-design p {
        color: #64748b;
        line-height: 1.7;
    }


.uiux-hero {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    overflow: hidden;
}

.uiux-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.uiux-hero-content {
    max-width: 580px;
}

.hero-mini-tag {
    display: inline-block;
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.uiux-hero-content h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #fff;
}

    .uiux-hero-content h1 span {
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.uiux-hero-content p {
    color: #94a3b8;
    margin: 22px 0 35px;
    line-height: 1.8;
    font-size: 17px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ui-btn-primary,
.ui-btn-outline {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.ui-btn-primary {
    background: linear-gradient(135deg, #00bcd4, #2563eb);
    color: #fff;
}

.ui-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

    .ui-btn-primary:hover,
    .ui-btn-outline:hover {
        transform: translateY(-4px);
    }

/* Stats */
.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 40px;
}

    .hero-stats h3 {
        color: #fff;
        font-size: 30px;
    }

    .hero-stats span {
        color: #94a3b8;
        font-size: 14px;
    }

/* RIGHT IMAGE */
.uiux-hero-image img {
    width: 560px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    animation: floatUI 4s ease-in-out infinite;
    height: 400px;
}

@keyframes floatUI {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.uiux-benefits {
    padding: 120px 0;
    background: #ffffff;
}

.uiux-benefits-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.uiux-benefits-image img {
    width: 520px;
    max-width: 100%;
    border-radius: 24px;
    height: 460px;
}

.uiux-benefits-image img {
    width: 100% !important;
    max-width: 100%;
    border-radius: 24px;
    height: 460px;
}

.mini-tag {
    color: #00bcd4;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0px;
}

.uiux-why {
    padding: 100px 0 !important;
}

.uiux-why-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
    align-items: flex-start;
}

/* LEFT SIDE */
.uiux-why-left {
    width: 100% !important;
}

    .uiux-why-left .mini-tag {
        display: inline-block;
        margin-bottom: 0px;
    }

    .uiux-why-left h2 {
        font-size: 48px !important;
        line-height: 1.15 !important;
        margin-bottom: 22px !important;
    }

    .uiux-why-left p {
        font-size: 18px !important;
        line-height: 1.8 !important;
        margin-bottom: 28px !important;
    }

.uiux-why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    font-size: 17px;
    border-radius: 14px;
}

/* RIGHT SIDE */
.uiux-why-right {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
    align-items: stretch;
}

/* CARD */
.why-card-uiux {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 26px 22px !important;
    border-radius: 24px !important;
    min-height: 210px !important;
    height: 100%;
}

    /* ICON */
    .why-card-uiux i {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px !important;
    }

    /* TEXT */
    .why-card-uiux div {
        flex: 1;
        min-width: 0;
    }

    .why-card-uiux h3 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .why-card-uiux p {
        font-size: 16px !important;
        line-height: 1.65 !important;
        margin: 0 !important;
    }

.uiux-benefits-content h2 {
    font-size: 46px;
    line-height: 1.3;
    color: #0f172a;
}

    .uiux-benefits-content h2 span {
        color: #00bcd4;
    }

.uiux-benefits-content p {
    color: #64748b;
    margin: 20px 0 30px;
    line-height: 1.8;
}

/* list */
.uiux-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.uiux-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .uiux-item i {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .uiux-item h4 {
        color: #0f172a;
        margin-bottom: 6px;
    }

    .uiux-item p {
        margin: 0;
        color: #64748b;
    }

.uiux-services {
    padding: 120px 0;
    background: #f8fafc;
}

.uiux-head {
    opacity: 1 !important;
    transform: none !important;
}

.uiux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* card */
.uiux-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 35px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

    /* bottom to top fill */
    .uiux-card::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        transition: .5s ease;
        z-index: 0;
    }

    .uiux-card:hover::before {
        bottom: 0;
    }

    .uiux-card * {
        position: relative;
        z-index: 2;
    }

    .uiux-card:hover h3,
    .uiux-card:hover p,
    .uiux-card:hover i {
        color: #fff;
    }

    .uiux-card:hover {
        transform: translateY(-8px);
    }

    /* icon */
    .uiux-card i {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        transition: .4s;
    }

    .uiux-card:hover i {
        background: rgba(255, 255, 255, .15);
    }

    .uiux-card h3 {
        color: #0f172a;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .uiux-card p {
        color: #64748b;
        line-height: 1.8;
    }

.uiux-portfolio {
    padding: 120px 0;
    background: #f8fafc;
}

.portfolio-head-uiux {
    opacity: 1 !important;
    transform: none !important;
}

.uiux-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

/* item */
.uiux-item-port {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 280px;
}

    .uiux-item-port.large {
        grid-column: span 2;
        min-height: 320px;
    }

    .uiux-item-port.wide {
        grid-column: span 2;
    }

    .uiux-item-port img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

/* overlay */
.uiux-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, .92), rgba(2, 6, 23, .08));
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: .4s;
}

.uiux-item-port:hover img {
    transform: scale(1.08);
}

.uiux-item-port:hover .uiux-overlay {
    opacity: 1;
}

.uiux-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 6px;
}

.uiux-overlay span {
    color: #cbd5e1;
}

.uiux-why {
    padding: 120px 0;
    background: #ffffff;
}

.uiux-why-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.why-card-uiux h3 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
}

.why-card-uiux {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 26px 22px !important;
    border-radius: 24px !important;
    min-height: auto !important;
    height: 100%;
}

.uiux-hero-content h1 {
    font-size: 50px !important;
    line-height: 1.2;
    color: #fff;
}

.uiux-benefits-content h2 {
    font-size: 38px !important;
    line-height: 1.3;
    color: #0f172a;
}

.uiux-why-left h2 {
    font-size: 38px !important;
    line-height: 1.15 !important;
    margin-bottom: 22px !important;
}

.mini-tag {
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.uiux-why-left h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #0f172a;
    margin: 15px 0;
}

    .uiux-why-left h2 span {
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.uiux-why-left p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.uiux-why-btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #00bcd4, #2563eb);
}

/* RIGHT */
.uiux-why-right {
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-card-uiux {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .35s;
}

    .why-card-uiux:hover {
        transform: translateX(8px);
        border-color: #00bcd4;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    }

    .why-card-uiux i {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, #00bcd4, #2563eb);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-card-uiux h3 {
        color: #0f172a;
        margin-bottom: 6px;
    }

    .why-card-uiux p {
        color: #64748b;
        line-height: 1.7;
    }

/* Dropdown Parent */
.dropdown {
    position: relative;
    list-style: none;
}

    /* Services Link */
    .dropdown > a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
    }

        .dropdown > a:hover {
            color: #00bcd4;
        }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.35s ease;
    z-index: 999;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Items */
.dropdown-menu li {
    width: 100%;
}

    .dropdown-menu li a {
        display: block;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        transition: 0.3s;
    }

        /* Hover Item */
        .dropdown-menu li a:hover {
            background: linear-gradient(135deg, #00bcd4, #2563eb);
            padding-left: 28px;
            color: white;
        }

/* Arrow Rotate */
.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.fa-chevron-down {
    font-size: 12px;
    transition: 0.3s;
}

/* FOOTER CONTENT SHOW FIX */
.holo-testimonial .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 5;
}

.holo-testimonial .footer-col {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

    .holo-testimonial .footer-col h3,
    .holo-testimonial .footer-col p,
    .holo-testimonial .footer-col a,
    .holo-testimonial .footer-col li {
        color: #ffffff !important;
    }

    .holo-testimonial .footer-col ul {
        list-style: none;
        padding: 0;
    }

.holo-testimonial .footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    position: relative;
    z-index: 5;
}

.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    transition: 0.3s ease;
    animation: borderGlow 2.5s infinite;
}

/* glow pulse */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 0 rgba(59, 130, 246, .2);
    }

    50% {
        box-shadow: 0 0 18px rgba(59, 130, 246, .6);
    }

    100% {
        box-shadow: 0 0 0 rgba(59, 130, 246, .2);
    }
}

/* shine effect */
.btn-outline::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .7), transparent);
    animation: shineBtn 3s infinite;
}

@keyframes shineBtn {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover */
.btn-outline:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-3px) scale(1.03);
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: gradientMove 4s ease infinite;
    transition: 0.3s ease;
}

/* moving gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine effect */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .6), transparent);
    animation: shinePrimary 3s infinite;
}

@keyframes shinePrimary {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* glow pulse */
.btn-primary {
    box-shadow: 0 0 0 rgba(59, 130, 246, .3);
}

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 0 20px rgba(59, 130, 246, .55);
    }

.showcase-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: showcaseGradient 4s ease infinite;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

/* moving gradient */
@keyframes showcaseGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine effect */
.showcase-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: showcaseShine 3s infinite;
}

@keyframes showcaseShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover */
.showcase-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(37, 99, 235, .45);
}

.choose-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: chooseGradient 4s ease infinite;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

/* moving gradient */
@keyframes chooseGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine effect */
.choose-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: chooseShine 3s infinite;
}

@keyframes chooseShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover */
.choose-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(37, 99, 235, .45);
}

.app-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: appPrimaryMove 4s ease infinite;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

@keyframes appPrimaryMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.app-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: appPrimaryShine 3s infinite;
}

@keyframes appPrimaryShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.app-btn-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(37, 99, 235, .45);
}

.app-btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 10px;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    transition: .3s ease;
    animation: appBorderGlow 2.5s infinite;
}

@keyframes appBorderGlow {
    0% {
        box-shadow: 0 0 0 rgba(59, 130, 246, .2);
    }

    50% {
        box-shadow: 0 0 18px rgba(59, 130, 246, .6);
    }

    100% {
        box-shadow: 0 0 0 rgba(59, 130, 246, .2);
    }
}

.app-btn-outline::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(59, 130, 246, .25), transparent);
    animation: appOutlineShine 3s infinite;
}

@keyframes appOutlineShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.app-btn-outline:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-4px) scale(1.04);
}

.why-main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: whyBtnMove 4s ease infinite;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

/* moving gradient */
@keyframes whyBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine sweep */
.why-main-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: whyBtnShine 3s infinite;
}

@keyframes whyBtnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover effect */
.why-main-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(37, 99, 235, .45);
}

.soft-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: softBtnMove 4s ease infinite;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(20, 184, 166, .28);
}

/* moving gradient */
@keyframes softBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine sweep */
.soft-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: softBtnShine 3s infinite;
}

@keyframes softBtnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* hover */
.soft-btn-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(20, 184, 166, .45);
}


.mark-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: markBtnMove 4s ease infinite;
    transition: .3s ease;
}

/* moving gradient */
@keyframes markBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine effect */
.mark-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: markBtnShine 3s infinite;
}

@keyframes markBtnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.results-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: resultsBtnMove 4s ease infinite;
    transition: .3s ease;
}

/* moving gradient */
@keyframes resultsBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine effect */
.results-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: resultsBtnShine 3s infinite;
}

@keyframes resultsBtnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.why-btn-marketing {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: whyMarkMove 4s ease infinite;
    transition: .3s ease;
}

/* moving gradient */
@keyframes whyMarkMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine sweep */
.why-btn-marketing::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: whyMarkShine 3s infinite;
}

@keyframes whyMarkShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.design-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: designBtnMove 4s ease infinite;
    transition: .3s ease;
}

/* moving gradient */
@keyframes designBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine sweep */
.design-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: designBtnShine 3s infinite;
}

@keyframes designBtnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.design-why-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 300% 300%;
    animation: designWhyMove 4s ease infinite;
    transition: .3s ease;
}

/* moving gradient */
@keyframes designWhyMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine sweep */
.design-why-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: designWhyShine 3s infinite;
}

@keyframes designWhyShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}



.ui-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 400% 400%;
    animation: uiBtnMove 5s ease infinite;
    transition: .3s ease;
}

/* moving gradient */
@keyframes uiBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine sweep */
.ui-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: uiBtnShine 3s infinite;
}

@keyframes uiBtnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.uiux-why-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(270deg, #06b6d4, #2563eb, #06b6d4);
    background-size: 400% 400%;
    animation: uiuxWhyMove 5s ease infinite;
    transition: .3s ease;
}

/* moving gradient */
@keyframes uiuxWhyMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine sweep */
.uiux-why-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: uiuxWhyShine 3s infinite;
}

@keyframes uiuxWhyShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}



/* =========================
   ABOUT HERO SECTION
========================= */
.about-hero {
    padding: 110px 0 90px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 45%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.about-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .35);
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.about-hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

    .about-hero-content h1 span {
        background: linear-gradient(90deg, #00e0ff, #00e0ff, #00e0ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.about-hero-content p {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* BUTTONS */
.about-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.about-btn-primary,
.about-btn-outline {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.about-btn-primary {
    color: #fff;
    background: linear-gradient(270deg, #06b6d4, #3b82f6, #06b6d4);
    background-size: 300% 300%;
    animation: aboutBtnMove 4s ease infinite;
    box-shadow: 0 12px 28px rgba(59, 130, 246, .25);
}

    .about-btn-primary:hover {
        transform: translateY(-4px);
    }

.about-btn-outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .18);
}

    .about-btn-outline:hover {
        background: rgba(255, 255, 255, .08);
        transform: translateY(-4px);
    }

@keyframes aboutBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* MINI STATS */
.about-mini-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.mini-box {
    min-width: 130px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}

    .mini-box h3 {
        font-size: 28px;
        color: #fff;
        margin-bottom: 6px;
    }

    .mini-box span {
        font-size: 14px;
        color: #94a3b8;
    }

/* RIGHT IMAGE */
.about-hero-image {
    position: relative;
}

    .about-hero-image img {
        width: 100%;
        border-radius: 28px;
        object-fit: cover;
        position: relative;
        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    }

/* GLOW */
.hero-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: .55;
}

.glow-one {
    background: #3b82f6;
    top: -30px;
    left: -40px;
}

.glow-two {
    background: #8b5cf6;
    right: -20px;
    bottom: -30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-hero-wrap {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-hero-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 80px 0 70px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-hero-btns {
        flex-direction: column;
    }

    .about-btn-primary,
    .about-btn-outline {
        width: 100%;
        text-align: center;
    }

    .mini-box {
        width: 100%;
    }
}


/* =========================
   ABOUT STORY SECTION
========================= */
.about-story {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-story-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

/* LEFT IMAGE */
.about-story-image {
    position: relative;
}

    .about-story-image img {
        width: 100%;
        border-radius: 28px;
        object-fit: cover;
        position: relative;
        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
        height: 430px;
    }

/* FLOATING CARD */
.story-card {
    position: absolute;
    right: -20px;
    bottom: 35px;
    z-index: 3;
    padding: 20px 24px;
    border-radius: 18px;
    background: #020617;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

    .story-card h3 {
        font-size: 30px;
        margin-bottom: 6px;
    }

    .story-card span {
        color: #94a3b8;
        font-size: 14px;
    }

/* GLOW SHAPES */
.story-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    z-index: 1;
}

.shape-one {
    width: 180px;
    height: 180px;
    background: #3b82f6;
    top: -30px;
    left: -40px;
}

.shape-two {
    width: 200px;
    height: 200px;
    background: #8b5cf6;
    right: -30px;
    bottom: -20px;
}

/* RIGHT CONTENT */
.story-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(59, 130, 246, .08);
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-story-content h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 22px;
    font-weight: 700;
}

    .about-story-content h2 span {
        background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.about-story-content p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* POINTS */
.story-points {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: .3s ease;
}

    .story-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, .06);
    }

    .story-item i {
        color: #3b82f6;
        font-size: 18px;
    }

    .story-item span {
        color: #0f172a;
        font-size: 15px;
        font-weight: 500;
    }

/* BUTTON */
.story-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(270deg, #06b6d4, #3b82f6, #06b6d4);
    background-size: 300% 300%;
    animation: storyBtnMove 4s ease infinite;
    box-shadow: 0 12px 28px rgba(59, 130, 246, .22);
    transition: .3s ease;
}

    .story-btn:hover {
        transform: translateY(-4px);
    }

@keyframes storyBtnMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-story-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-story-content h2 {
        font-size: 40px;
    }

    .story-card {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .about-story {
        padding: 75px 0;
    }

    .about-story-content h2 {
        font-size: 32px;
    }

    .story-points {
        grid-template-columns: 1fr;
    }

    .story-card {
        position: static;
        margin-top: 15px;
        width: fit-content;
    }

    .story-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   SPLIT MISSION VISION
========================= */
.mv-split {
    padding: 100px 0;
    background: #020617;
    position: relative;
    overflow: hidden;
}

/* heading */
.mv-split-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.mv-split-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.mv-split-head h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
}

    .mv-split-head h2 span {
        background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.mv-split-head p {
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.8;
}

/* layout */
.mv-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* panel */
.mv-panel {
    position: relative;
    padding: 42px 36px;
    border-radius: 30px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .35s ease;
}

    .mv-panel:hover {
        transform: translateY(-10px);
    }

/* bg text */
.mv-bg-text {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 68px;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
    pointer-events: none;
}

/* colors */
.mission-panel {
    background: linear-gradient(135deg, #0f172a, #111827);
    border: 1px solid rgba(6, 182, 212, .18);
}

.vision-panel {
    background: linear-gradient(135deg, #111827, #1e1b4b);
    border: 1px solid rgba(139, 92, 246, .18);
}

/* icon */
.mv-panel-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    box-shadow: 0 15px 35px rgba(59, 130, 246, .22);
}

.vision-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 15px 35px rgba(139, 92, 246, .22);
}

/* content */
.mv-panel h3 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 18px;
}

.mv-panel p {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 520px;
}

/* tags */
.mv-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .mv-tags span {
        padding: 10px 16px;
        border-radius: 50px;
        font-size: 14px;
        color: #fff;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .08);
    }

/* responsive */
@media (max-width:992px) {
    .mv-split-wrap {
        grid-template-columns: 1fr;
    }

    .mv-split-head h2 {
        font-size: 40px;
    }

    .mv-panel {
        min-height: auto;
    }
}

@media (max-width:576px) {
    .mv-split {
        padding: 75px 0;
    }

    .mv-split-head {
        margin-bottom: 40px;
    }

        .mv-split-head h2 {
            font-size: 32px;
        }

    .mv-panel {
        padding: 28px 22px;
    }

        .mv-panel h3 {
            font-size: 26px;
        }

        .mv-panel p {
            font-size: 15px;
        }

    .mv-panel-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .mv-bg-text {
        font-size: 42px;
    }
}

/* =========================
   JOURNEY STATS SECTION
========================= */
.journey-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617, #0f172a, #111827);
    position: relative;
    overflow: hidden;
}

/* heading */
.journey-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.journey-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.journey-head h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
}

    .journey-head h2 span {
        background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.journey-head p {
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.8;
}

/* wrapper */
.journey-wrap {
    position: relative;
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 26px;
}

.journey-line {
    position: absolute;
    left: 28px;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(180deg, #06b6d4, #3b82f6, #8b5cf6);
}

/* item */
.journey-item {
    position: relative;
    padding-left: 70px;
}

.journey-dot {
    position: absolute;
    left: 18px;
    top: 38px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 0 8px rgba(59, 130, 246, .15);
    z-index: 2;
}

.journey-card {
    padding: 30px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    transition: .35s ease;
}

    .journey-card:hover {
        transform: translateX(8px);
        box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
    }

    .journey-card h3 {
        font-size: 42px;
        color: #fff;
        margin-bottom: 10px;
    }

    .journey-card span {
        display: block;
        font-size: 18px;
        font-weight: 600;
        color: #60a5fa;
        margin-bottom: 10px;
    }

    .journey-card p {
        color: #cbd5e1;
        font-size: 15px;
        line-height: 1.8;
    }

/* responsive */
@media (max-width:320px) {
    .journey-head h2 {
        font-size: 40px;
    }

    .about-story-image img {
        width: 100%;
        border-radius: 28px;
        object-fit: cover;
        position: relative;
        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
        height: 320px !important;
    }

    .about-banner-image img {
        height: auto;
        height: 320px !important;
        border-radius: 20px;
        width: 100%;
    }
}

@media (max-width:576px) {
    .journey-section {
        padding: 75px 0;
    }

    .journey-head {
        margin-bottom: 40px;
    }

        .journey-head h2 {
            font-size: 32px;
        }

    .journey-item {
        padding-left: 55px;
    }

    .journey-line {
        left: 20px;
    }

    .journey-dot {
        left: 10px;
        width: 20px;
        height: 20px;
    }

    .journey-card {
        padding: 24px 20px;
    }

        .journey-card h3 {
            font-size: 34px;
        }

        .journey-card span {
            font-size: 16px;
        }
}

/* =========================
   LIGHT TEAM SECTION
========================= */
.team-light-section {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

/* heading */
.team-light-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.team-light-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(59, 130, 246, .08);
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.team-light-head h2 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 700;
}

    .team-light-head h2 span {
        background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.team-light-head p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

/* grid */
.team-light-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* card */
.team-light-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

    .team-light-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
    }

.team-light-img {
    height: 270px;
    overflow: hidden;
}

    .team-light-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .45s ease;
    }

.team-light-card:hover .team-light-img img {
    transform: scale(1.08);
}

/* info */
.team-light-info {
    padding: 24px 20px;
}

    .team-light-info h3 {
        font-size: 22px;
        color: #0f172a;
        margin-bottom: 8px;
    }

    .team-light-info span {
        display: block;
        color: #3b82f6;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .team-light-info p {
        color: #64748b;
        font-size: 15px;
        line-height: 1.7;
    }

/* responsive */
@media (max-width:992px) {
    .team-light-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-light-head h2 {
        font-size: 40px;
    }
}

@media (max-width:576px) {
    .team-light-section {
        padding: 75px 0;
    }

    .team-light-grid {
        grid-template-columns: 1fr;
    }

    .team-light-head {
        margin-bottom: 40px;
    }

        .team-light-head h2 {
            font-size: 32px;
        }

    .team-light-img {
        height: 240px;
    }
}

.about-banner-image img {
    height: auto;
    height: 400px;
    border-radius: 20px;
    width: 100%;
}

/* ABOUT PRIMARY BUTTON ANIMATION */
.about-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #00bcd4, #2563eb);
    background-size: 400% 400%;
    animation: aboutBtnGlow 5s ease infinite;
    transition: .35s ease;
}

/* moving gradient */
@keyframes aboutBtnGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* shine effect */
.about-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: aboutBtnShine 3s infinite;
}

@keyframes aboutBtnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

html {
    scroll-behavior: smooth;
}


.app-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
}

/* =========================================
   APP SERVICES GRID FIX
   768 = 2 cards
   480 = 1 card
   Isko CSS ke bilkul LAST me paste karo
========================================= */

/* ---------- 768px ---------- */
@media only screen and (max-width:768px) {

    .app-services .app-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    .app-services .app-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .app-tech-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .app-project-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .app-why-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* SAME GAP */
    .software-hero,
    .software-benefits,
    .software-services,
    .process-section,
    .industries-section,
    .why-soft-v2,
    .parallax-testi-section,
    .faq-section,
    .holo-testimonial {
        padding: 100px 0 !important;
    }

    /* HERO */
    .software-hero-wrap {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .software-hero-content,
    .software-hero-image {
        width: 100%;
        text-align: center !important;
    }

        .software-hero-content h1 {
            font-size: 52px;
            line-height: 1.15;
        }

        .software-hero-content p {
            font-size: 18px;
            line-height: 1.8;
        }

    .hero-btns {
        margin-top: 28px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 35px;
    }

    .software-hero-image {
        text-align: center;
    }

        .software-hero-image img {
            width: 100%;
            height: auto;
            border-radius: 26px;
        }

    /* BENEFITS */
    .software-benefits-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 45px;
    }

    .software-benefits-content,
    .software-benefits-image {
        width: 100%;
    }

        .software-benefits-content h2 {
            font-size: 48px;
            line-height: 1.18;
        }

        .software-benefits-content p {
            font-size: 18px;
        }

    .software-benefits-image {
        text-align: center;
    }

        .software-benefits-image img {
            width: 100%;
            border-radius: 26px;
        }

    /* SERVICES */
    .software-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .software-card {
        padding: 28px 22px;
    }

        .software-card h3 {
            font-size: 22px;
        }

        .software-card p {
            font-size: 16px;
        }

    /* PROCESS */
    .process-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        height: auto !important;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
    }

    .step-content {
        width: 170px !important;
        height: 170px !important;
        margin: auto;
    }

    /* INDUSTRIES */
    .industry-zigzag {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .industry-item {
        width: 100% !important;
        margin: 0 !important;
    }

    /* WHY CHOOSE */
    .why-soft-v2-wrap {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .why-v2-left,
    .why-v2-right {
        width: 100%;
    }

        .why-v2-left h2 {
            font-size: 46px;
        }

    .why-v2-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .feature-strip {
        padding: 24px;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-bottom {
        gap: 14px;
        text-align: center;
    }

    /* COMMON */
    .section-header h2,
    .section-title,
    .main-title {
        font-size: 42px !important;
        line-height: 1.2;
    }

    .why-soft-v2 {
        padding: 100px 0 !important;
    }

    .why-soft-v2-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 45px !important;
        align-items: flex-start !important;
    }

    /* LEFT */
    .why-v2-left {
        width: 100% !important;
        text-align: center !important;
    }

        .why-v2-left .mini-tag {
            display: inline-block;
            margin-bottom: 0px;
        }

        .why-v2-left h2 {
            font-size: 32px !important;
            line-height: 1.15 !important;
            margin-bottom: 22px !important;
        }

        .why-v2-left p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

    /* stats */
    .why-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .stat-box {
        padding: 28px 20px;
        text-align: center;
    }

    /* RIGHT */
    .why-v2-right {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .feature-strip {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 26px 22px;
        border-radius: 22px;
        min-height: 170px;
    }

        .feature-strip i {
            font-size: 24px;
            min-width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-strip h3 {
            font-size: 22px !important;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .feature-strip p {
            font-size: 16px;
            line-height: 1.7;
        }

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* SAME GAP */
    .marketing-hero,
    .marketing-benefits,
    .marketing-services,
    .process-section,
    .marketing-results-v2,
    .marketing-why,
    .parallax-testi-section,
    .faq-section,
    .holo-testimonial {
        padding: 100px 0 !important;
    }

    /* ================= HERO ================= */
    .marketing-hero-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px;
    }

    .marketing-hero-content,
    .marketing-hero-image {
        width: 100% !important;
        text-align: center !important;
    }

        .marketing-hero-content h1 {
            font-size: 48px !important;
            line-height: 1.12;
        }

        .marketing-hero-content p {
            font-size: 18px;
            line-height: 1.8;
        }

    .hero-btns {
        margin-top: 28px;
    }

    .hero-stats {
        gap: 18px;
        margin-top: 32px;
    }

        .hero-stats div {
            padding: 20px;
        }

    .marketing-hero-image {
        text-align: center;
    }

        .marketing-hero-image img {
            width: 100%;
            border-radius: 26px;
        }

    /* ================ BENEFITS ================ */
    .marketing-benefits-wrap {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 45px;
    }

    .marketing-benefits-image,
    .marketing-benefits-content {
        width: 100% !important;
    }

    .marketing-benefits-image {
        text-align: center;
    }

        .marketing-benefits-image img {
            width: 100%;
            border-radius: 26px;
        }

    .marketing-benefits-content h2 {
        font-size: 46px;
        line-height: 1.15;
    }

    .marketing-benefits-content p {
        font-size: 18px;
    }

    .marketing-item {
        gap: 16px;
    }

    /* ================ SERVICES ================ */
    .marketing-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .marketing-card {
        padding: 28px 22px;
    }

        .marketing-card h3 {
            font-size: 22px;
        }

    .marketing-results-v2 {
        padding: 100px 0 !important;
    }

    .results-v2-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important;
        align-items: flex-start;
    }

    /* LEFT CONTENT */
    .results-v2-left {
        width: 100% !important;
    }

        .results-v2-left .mini-tag {
            display: inline-block;
            margin-bottom: 0px;
        }

        .results-v2-left h2 {
            font-size: 48px !important;
            line-height: 1.15 !important;
            margin-bottom: 20px !important;
        }

        .results-v2-left p {
            font-size: 18px;
            line-height: 1.8;
            max-width: 100%;
            margin-bottom: 28px;
        }

    .results-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 30px;
        font-size: 17px;
        border-radius: 14px;
    }

    /* RIGHT GRID */
    .results-v2-right {
        width: 100% !important;
        display: grid !important;
        gap: 22px !important;
    }

    /* rows */
    .metric-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    /* cards */
    .metric-card {
        padding: 30px 24px !important;
        border-radius: 24px;
    }

    .marketing-why {
        padding: 100px 0 !important;
    }

    .marketing-why-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important;
        align-items: flex-start;
    }

    /* LEFT CONTENT */
    .marketing-why-left {
        width: 100% !important;
    }

        .marketing-why-left .mini-tag {
            display: inline-block;
            margin-bottom: 0px;
        }

        .marketing-why-left h2 {
            font-size: 36px !important;
            line-height: 1.15 !important;
            margin-bottom: 22px !important;
        }

        .marketing-why-left p {
            font-size: 18px;
            line-height: 1.8;
            max-width: 100%;
            margin-bottom: 28px;
        }

    .why-btn-marketing {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 30px;
        font-size: 17px;
        border-radius: 14px;
    }

    /* RIGHT GRID */
    .marketing-why-right {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    /* CARDS */
    .why-line-card {
        padding: 28px 24px !important;
        border-radius: 24px;
    }

    .marketing-why-right {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
        align-items: stretch !important;
    }

    /* ALL CARDS SAME */
    .why-line-card {
        display: flex !important;
        align-items: flex-start !important;
        gap: 18px !important;
        padding: 28px 22px !important;
        border-radius: 24px !important;
        height: 100% !important;
    }

        /* ICON */
        .why-line-card i {
            width: 56px !important;
            height: 56px !important;
            min-width: 56px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 22px !important;
        }

        /* TEXT AREA */
        .why-line-card .content,
        .why-line-card div {
            flex: 1;
            min-width: 0;
        }

        /* TITLE */
        .why-line-card h3 {
            font-size: 22px !important;
            line-height: 1.3 !important;
            margin-bottom: 10px !important;
            word-break: break-word;
        }

        /* DESC */
        .why-line-card p {
            font-size: 16px !important;
            line-height: 1.65 !important;
            margin: 0 !important;
        }

        .why-line-card i {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .why-line-card h3 {
            font-size: 20px !important;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .why-line-card p {
            font-size: 16px;
            line-height: 1.7;
        }

    .metric-card i {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .metric-card h3 {
        font-size: 34px !important;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .metric-card span {
        font-size: 16px;
        line-height: 1.6;
        display: block;
    }

    /* ================ PROCESS ================ */
    .process-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
    }

    .step-content {
        width: 170px !important;
        height: 170px !important;
        margin: auto;
    }

    /* ================ RESULTS ================ */
    .results-v2-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 45px;
    }

    .results-v2-left,
    .results-v2-right {
        width: 100% !important;
    }

        .results-v2-left h2 {
            font-size: 46px;
        }

    .results-v2-right {
        display: grid;
        gap: 22px;
    }

    .metric-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 22px;
    }

    .metric-card {
        padding: 28px 22px;
    }

    /* ================ WHY CHOOSE ================ */
    .marketing-why-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 45px;
    }

    .marketing-why-left,
    .marketing-why-right {
        width: 100% !important;
    }

        .marketing-why-left h2 {
            font-size: 46px;
        }

    .marketing-why-right {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 22px !important;
    }

    .why-line-card {
        padding: 24px 20px;
    }

    /* ================ TESTIMONIAL ================ */
    .glass-card {
        padding: 28px;
    }

    .review-text {
        font-size: 17px;
        line-height: 1.7;
    }

    /* ================ FAQ ================ */
    .faq-question {
        font-size: 18px;
    }

    /* ================ FOOTER ================ */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 35px;
    }

    .footer-bottom {
        gap: 14px;
        text-align: center;
    }

    /* COMMON */
    .section-header h2,
    .section-title,
    .main-title {
        font-size: 42px !important;
        line-height: 1.2;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* SAME GAP */
    .design-hero,
    .design-benefits,
    .design-services,
    .process-section,
    .design-portfolio,
    .design-why,
    .parallax-testi-section,
    .faq-section,
    .holo-testimonial {
        padding: 100px 0 !important;
    }

    /* =================================
   HERO
================================= */
    .design-hero-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important;
        align-items: center;
    }

    .design-hero-content,
    .design-hero-image {
        width: 100% !important;
    }

    .design-hero-content {
        text-align: center;
    }

        .design-hero-content h1 {
            font-size: 52px !important;
            line-height: 1.12 !important;
        }

        .design-hero-content p {
            font-size: 18px !important;
            line-height: 1.8 !important;
            max-width: 680px;
            margin: auto;
        }

    .hero-btns {
        justify-content: center;
        margin-top: 28px;
    }

    .hero-stats {
        gap: 18px;
        margin-top: 32px;
    }

    .design-hero-image img {
        width: 100%;
        border-radius: 26px;
    }

    /* =================================
   BENEFITS
================================= */
    .design-benefits-wrap {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 45px !important;
    }

    .design-benefits-image,
    .design-benefits-content {
        width: 100% !important;
    }

        .design-benefits-content h2 {
            font-size: 46px !important;
            line-height: 1.15 !important;
        }

        .design-benefits-content p {
            font-size: 18px;
        }

    .design-benefits-image {
        text-align: center;
    }

        .design-benefits-image img {
            width: 100%;
            border-radius: 24px;
        }

    /* =================================
   SERVICES
================================= */
    .design-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .design-card {
        padding: 28px 22px;
        min-height: 260px;
    }

        .design-card h3 {
            font-size: 22px !important;
        }

    .design-why {
        padding: 100px 0 !important;
    }

    .design-why-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important;
        align-items: flex-start;
    }

    /* LEFT SIDE */
    .design-why-left {
        width: 100% !important;
    }

        .design-why-left .mini-tag {
            display: inline-block;
            margin-bottom: 0px;
        }

    .portfolio-item.large {
        grid-column: span 2;
        min-height: auto;
    }

    .design-why-left h2 {
        font-size: 48px !important;
        line-height: 1.15 !important;
        margin-bottom: 22px !important;
    }

    .design-why-left p {
        font-size: 18px !important;
        line-height: 1.8 !important;
        margin-bottom: 28px !important;
        max-width: 100%;
    }

    .design-why-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 30px;
        font-size: 17px;
        border-radius: 14px;
    }

    /* RIGHT SIDE GRID */
    .design-why-right {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
        align-items: stretch;
    }

    /* CARD */
    .why-card-design {
        display: flex !important;
        align-items: flex-start !important;
        gap: 16px !important;
        padding: 26px 22px !important;
        min-height: auto !important;
        border-radius: 24px !important;
        height: 100%;
    }

        /* ICON */
        .why-card-design i {
            width: 54px !important;
            height: 54px !important;
            min-width: 54px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px !important;
        }

        /* TEXT */
        .why-card-design div {
            flex: 1;
            min-width: 0;
        }

        .why-card-design h3 {
            font-size: 22px !important;
            line-height: 1.3 !important;
            margin-bottom: 8px !important;
        }

        .why-card-design p {
            font-size: 16px !important;
            line-height: 1.65 !important;
            margin: 0 !important;
        }

    .about-story-content {
        text-align: center !important;
    }

    /* =================================
   PROCESS
================================= */
    .process-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        height: auto !important;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
    }

    .step-content {
        width: 170px !important;
        height: 170px !important;
        margin: auto;
    }

    /* =================================
   PORTFOLIO
================================= */
    .portfolio-grid-design {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .portfolio-item.large,
    .portfolio-item.wide {
        grid-column: auto !important;
    }

    .portfolio-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    /* =================================
   WHY CHOOSE
================================= */
    .design-why-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 45px !important;
    }

    .design-why-left,
    .design-why-right {
        width: 100% !important;
    }

        .design-why-left h2 {
            font-size: 46px !important;
        }

        .design-why-left p {
            font-size: 18px;
        }

    .design-why-right {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .why-card-design {
        padding: 24px 20px;
        min-height: 220px;
    }

    /* =================================
   FOOTER
================================= */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 35px;
    }

    .footer-bottom {
        gap: 14px;
        text-align: center;
    }

    /* =================================
   COMMON
================================= */
    .section-header h2,
    .section-title,
    .main-title {
        font-size: 32px !important;
        line-height: 1.2;
    }
}

/* ---------- 480px ---------- */
@media only screen and (max-width:480px) {

    .app-services .app-services-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .app-services .app-card {
        padding: 28px 22px !important;
    }

    .app-hero-image img {
        width: 420px;
        max-width: 100%;
        animation: floatPhone 4s ease-in-out infinite;
        height: auto !important;
        border-radius: 20px;
    }

    .app-tech-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .app-project-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .app-why-right {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 25px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }



    /* NAVBAR */
    .nav-flex {
        min-height: 72px;
    }

    .logo img {
        max-width: 150px;
    }


    /* SAME GAP */
    .software-hero,
    .software-benefits,
    .software-services,
    .process-section,
    .industries-section,
    .why-soft-v2,
    .parallax-testi-section,
    .faq-section,
    .holo-testimonial {
        padding: 50px 0 !important;
    }

    /* HERO */
    .software-hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .software-hero-content p {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    /* BENEFITS */
    .software-benefits-content h2 {
        font-size: 34px;
    }

    .software-benefits-content p {
        font-size: 16px;
    }

    .software-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* SERVICES */
    .software-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .software-card h3 {
        font-size: 24px;
    }

    /* PROCESS */
    .process-step {
        max-width: 100% !important;
    }

    /* INDUSTRIES */
    .industry-item {
        padding: 22px;
    }

        .industry-item h3 {
            font-size: 20px;
        }

    /* WHY CHOOSE */
    .why-v2-left h2 {
        font-size: 34px;
    }

    .why-v2-right {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        padding: 22px;
    }

    /* FAQ */
    .faq-question {
        font-size: 16px;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* FLOATING */
    .fc-btn {
        width: 48px;
        height: 48px;
    }

    .scroll-indicator {
        transform: scale(.82);
    }

    /* COMMON */
    .section-header h2,
    .section-title,
    .main-title {
        font-size: 32px !important;
    }

    .why-soft-v2 {
        padding: 70px 0 !important;
    }

    .why-soft-v2-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    /* LEFT */
    .why-v2-left {
        width: 100% !important;
        text-align: center !important;
    }

        .why-v2-left .mini-tag {
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 0px;
            display: inline-block;
        }

        .why-v2-left h2 {
            font-size: 29px !important;
            line-height: 1.22 !important;
            margin-bottom: 18px !important;
        }

        .why-v2-left p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

    /* stats */
    .why-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .stat-box {
        padding: 22px 18px !important;
        text-align: center;
        border-radius: 18px;
    }

        .stat-box h3 {
            font-size: 34px;
            margin-bottom: 6px;
        }

        .stat-box span {
            font-size: 15px;
        }

    /* RIGHT */
    .why-v2-right {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .feature-strip {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 18px !important;
        border-radius: 18px;
        min-height: auto !important;
    }

        .feature-strip i {
            width: 48px;
            height: 48px;
            min-width: 48px;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-strip h3 {
            font-size: 20px !important;
            line-height: 1.25;
            margin-bottom: 6px;
        }

        .feature-strip p {
            font-size: 15px;
            line-height: 1.6;
        }

    .industries-section {
        padding: 60px 0 !important;
    }

    .industry-zigzag {
        gap: 16px !important;
    }

    .industry-item,
    .industry-item.left,
    .industry-item.right {
        width: 100% !important;
        margin: 0 !important;
        padding: 18px 14px !important;
        border-radius: 18px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

        /* icon */
        .industry-item i {
            width: 42px !important;
            height: 42px !important;
            min-width: 42px !important;
            font-size: 16px !important;
            border-radius: 12px;
        }

        /* content */
        .industry-item div {
            flex: 1;
            min-width: 0;
        }

        .industry-item h3 {
            font-size: 18px !important;
            line-height: 1.25;
            margin-bottom: 6px;
        }

        .industry-item p {
            font-size: 14px !important;
            line-height: 1.55;
            word-break: break-word;
        }

    .marketing-hero-content h1 {
        font-size: 32px !important;
        line-height: 1.12;
    }

    .marketing-benefits-image img {
        width: 520px;
        max-width: 100%;
        border-radius: 24px;
        height: auto !important;
    }

    .section-header h2,
    .section-title,
    .main-title,
    h2 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .marketing-grid {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 22px !important;
    }

    .marketing-card h3 {
        font-size: 20px !important;
    }

    .results-v2-left h2 {
        font-size: 36px !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
    }

    .results-v2-left .mini-tag {
        display: inline-block;
        margin-bottom: 0px;
    }

    .marketing-why-left h2 {
        font-size: 30px !important;
        line-height: 1.15 !important;
        margin-bottom: 22px !important;
    }

    .marketing-why-left .mini-tag {
        display: inline-block;
        margin-bottom: 0px;
    }

    .marketing-why {
        padding: 70px 0 !important;
    }

    .marketing-why-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    /* LEFT */
    .marketing-why-left {
        width: 100% !important;
    }

    .about-banner-image img {
        height: auto;
        height: auto;
        border-radius: 20px;
        width: 100%;
    }

    .about-story-image img {
        width: 100%;
        border-radius: 28px;
        object-fit: cover;
        position: relative;
        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
        height: auto;
    }

    .marketing-why-left h2 {
        font-size: 34px !important;
        line-height: 1.22 !important;
    }

    .marketing-why-left p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .why-btn-marketing {
        width: 100%;
        justify-content: center;
    }

    /* RIGHT GRID => 1 CARD */
    .marketing-why-right {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* CARD */
    .why-line-card {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 20px 18px !important;
        border-radius: 18px !important;
    }

        /* ICON */
        .why-line-card i {
            width: 48px !important;
            height: 48px !important;
            min-width: 48px !important;
            font-size: 18px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* TEXT */
        .why-line-card div {
            flex: 1;
            min-width: 0;
        }

        .why-line-card h3 {
            font-size: 20px !important;
            line-height: 1.3 !important;
            margin-bottom: 6px !important;
            word-break: normal !important;
        }

        .why-line-card p {
            font-size: 15px !important;
            line-height: 1.6 !important;
            margin: 0 !important;
            word-break: normal !important;
        }

    .marketing-results-v2 {
        padding: 55px 0 !important;
    }

    .results-v2-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    /* LEFT CONTENT */
    .results-v2-left,
    .results-v2-right {
        width: 100% !important;
    }

        .results-v2-left .mini-tag {
            font-size: 12px !important;
            letter-spacing: 1.5px;
            margin-bottom: 12px !important;
            display: inline-block;
        }

        .results-v2-left h2 {
            font-size: 26px !important;
            line-height: 1.25 !important;
            margin-bottom: 14px !important;
        }

        .results-v2-left p {
            font-size: 14px !important;
            line-height: 1.6 !important;
            margin-bottom: 18px !important;
        }

    .results-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }

    /* RIGHT GRID */
    .results-v2-right {
        display: grid !important;
        gap: 14px !important;
    }

    /* rows become single */
    .metric-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* CARD */
    .metric-card {
        min-height: auto !important;
        height: auto !important;
        padding: 18px 14px !important;
        border-radius: 16px !important;
    }

        .metric-card i {
            font-size: 18px !important;
            margin-bottom: 10px !important;
        }

        .metric-card h3 {
            font-size: 22px !important;
            line-height: 1.2 !important;
            margin-bottom: 4px !important;
        }

        .metric-card span {
            font-size: 14px !important;
            line-height: 1.55 !important;
        }

    .design-hero-content h1 {
        font-size: 32px !important;
        line-height: 1.12 !important;
    }

    .design-hero-content p {
        font-size: 16px !important;
        line-height: 1.8 !important;
        max-width: 680px;
        margin: auto;
    }

    .design-hero-image img {
        width: 560px;
        max-width: 100%;
        border-radius: 24px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
        animation: floatDesign 4s ease-in-out infinite;
        height: auto;
    }

    .design-benefits-content h2 {
        font-size: 30px !important;
        line-height: 1.15 !important;
    }

    .design-benefits {
        padding: 70px 0 !important;
    }

    .design-benefits-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .design-benefits-image,
    .design-benefits-content {
        width: 100% !important;
    }

    /* each item */
    .design-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 14px !important;
        margin-bottom: 20px !important;
    }

        /* icon */
        .design-item i {
            width: 44px !important;
            height: 44px !important;
            min-width: 44px !important;
            font-size: 16px !important;
            border-radius: 14px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* text */
        .design-item div {
            flex: 1;
            min-width: 0;
        }

        .design-item h4 {
            font-size: 20px !important;
            line-height: 1.35 !important;
            margin-bottom: 6px !important;
        }

        .design-item p {
            font-size: 15px !important;
            line-height: 1.65 !important;
            margin: 0 !important;
        }

    .design-grid {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 22px !important;
    }

    .design-card h3 {
        font-size: 20px !important;
    }

    .portfolio-grid-design {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 22px !important;
    }

    .design-why-left h2 {
        font-size: 30px !important;
    }

    .design-why-right {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 22px !important;
    }

    .uiux-portfolio-grid {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 22px !important;
    }

    .uiux-hero-content h1 {
        font-size: 32px !important;
        line-height: 1.2;
        color: #fff;
    }

    .uiux-hero-content p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        max-width: 680px;
        margin: auto;
    }

    .uiux-benefits-content h2 {
        font-size: 30px !important;
        line-height: 1.3;
        color: #0f172a;
        margin-top: 6px;
    }

    .uiux-benefits-image img {
        width: 100% !important;
        max-width: 100%;
        border-radius: 24px;
        height: auto;
    }

    .uiux-grid {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 22px !important;
    }

    .uiux-why-right {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 22px !important;
        align-items: stretch;
    }

    .holo-testimonial {
        padding: 80px 0 !important;
        height: auto !important;
        min-height: auto !important;
    }

        .holo-testimonial .container {
            padding-left: 16px !important;
            padding-right: 16px !important;
        }

    /* GRID */
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 35px !important;
    }

    /* COLUMN */
    .footer-col {
        width: 100% !important;
    }

        .footer-col h3 {
            font-size: 22px !important;
            margin-bottom: 18px !important;
        }

        .footer-col p,
        .footer-col li a {
            font-size: 15px !important;
            line-height: 1.7 !important;
        }

    /* BRAND */
    .brand-col .logo img {
        max-width: 95px !important;
        height: auto;
    }

    .social-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        margin-top: 18px !important;
    }

        .social-links a {
            width: 42px !important;
            height: 42px !important;
            font-size: 16px !important;
        }

    /* NEWSLETTER */
    .subscribe-box {
        display: flex !important;
        align-items: center;
        gap: 8px;
        padding: 6px !important;
        border-radius: 14px !important;
    }

        .subscribe-box input {
            font-size: 14px !important;
            padding: 10px 12px !important;
        }

        .subscribe-box button {
            width: 100% !important;
            height: 42px !important;
            min-width: 42px !important;
        }

    .showcase-content h2 {
        font-size: 24px !important;
        line-height: 1.3;
        color: #0f172a;
    }

    .choose-left h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    /* LINKS */
    .footer-col ul li {
        margin-bottom: 10px !important;
    }

    .about-story-content {
        text-align: center;
    }

    /* BOTTOM */
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding-top: 22px !important;
    }

        .footer-bottom p {
            font-size: 14px !important;
            line-height: 1.6 !important;
        }

    .bottom-links {
        display: flex !important;
        /* flex-direction: column !important; */
        /* gap: 10px !important; */
        justify-content: space-between;
        gap: 162px;
    }

        .bottom-links a {
            margin: 0 !important;
            font-size: 14px !important;
        }

    .app-hero, .app-benefits, .app-services, .process-section, .app-tech, .app-portfolio-pro, .app-why, .parallax-testi-section, .faq-section, .holo-testimonial {
        padding: 50px 0 !important;
    }
}

@media only screen and (max-width:375px) {

    .section-header h2,
    .section-title,
    .main-title {
        font-size: 22px !important;
        line-height: 1.2;
    }

    .software-hero-content h1 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .software-card h3 {
        font-size: 20px !important;
    }

    .marketing-benefits {
        padding: 60px 0 !important;
    }

    .marketing-benefits-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 26px !important;
    }

    .marketing-benefits-image,
    .marketing-benefits-content {
        width: 100% !important;
    }

    /* each item */
    .marketing-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 14px !important;
        margin-bottom: 20px !important;
    }

        /* icon */
        .marketing-item i {
            width: 42px !important;
            height: 42px !important;
            min-width: 42px !important;
            font-size: 16px !important;
            border-radius: 13px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* text */
        .marketing-item div {
            flex: 1;
            min-width: 0;
        }

        .marketing-item h3 {
            font-size: 20px !important;
            line-height: 1.35 !important;
            margin-bottom: 6px !important;
            word-break: normal !important;
        }

        .marketing-item p {
            font-size: 15px !important;
            line-height: 1.6 !important;
            margin: 0 !important;
            word-break: normal !important;
        }

    .section-header h2,
    .section-title,
    .main-title,
    h2 {
        font-size: 24px !important;
        line-height: 1.2;
    }

    .about-story-content p {
        color: #64748b;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .bottom-links {
        display: flex !important;
        /* flex-direction: column !important; */
        /* gap: 10px !important; */
        justify-content: space-between;
        gap: 52px;
    }

    .about-hero-content h1 {
        font-size: 24px;
    }

    .about-hero-content p {
        font-size: 14px;
    }

    .web-hero-text h1 {
        font-size: 30px !important;
        line-height: 1.3;
        font-weight: 300;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media only screen and (max-width: 320px) {
    .app-hero-image img {
        width: 420px;
        max-width: 100%;
        animation: floatPhone 4s ease-in-out infinite;
        height: auto !important;
        border-radius: 20px;
    }

    .industries-section {
        padding: 60px 0 !important;
    }

    .industry-zigzag {
        gap: 16px !important;
    }

    .industry-item,
    .industry-item.left,
    .industry-item.right {
        width: 100% !important;
        margin: 0 !important;
        padding: 18px 14px !important;
        border-radius: 18px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .about-banner-image img {
        height: auto;
        height: auto !important;
        border-radius: 20px;
        width: 100%;
    }

    /* icon */
    .industry-item i {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 16px !important;
        border-radius: 12px;
    }

    .about-story-image img {
        width: 100%;
        border-radius: 28px;
        object-fit: cover;
        position: relative;
        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
        height: auto !important;
    }

    /* content */
    .industry-item div {
        flex: 1;
        min-width: 0;
    }

    .industry-item h3 {
        font-size: 18px !important;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .industry-item p {
        font-size: 14px !important;
        line-height: 1.55;
        word-break: break-word;
    }

    .why-v2-left h2 {
        font-size: 22px !important;
        line-height: 1.22 !important;
        margin-bottom: 18px !important;
    }

    .software-card h3 {
        font-size: 20px !important;
    }

    .section-header h2,
    .section-title,
    .main-title {
        font-size: 20px !important;
        line-height: 1.2;
    }

    .software-benefits-image img {
        width: 770px;
        /* max-width: 100%; */
        border-radius: 20px;
        height: 210px !important;
    }

    .software-hero-content h1 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .why-line-card h3 {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        word-break: normal !important;
    }

    .marketing-why-left h2 {
        font-size: 24px !important;
        line-height: 1.22 !important;
    }

    .marketing-why-left p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .results-v2-left h2 {
        font-size: 24px !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
    }

    .section-header h2,
    .section-title,
    .main-title,
    h2 {
        font-size: 23px !important;
        line-height: 1.2;
    }

    .marketing-benefits {
        padding: 55px 0 !important;
    }

    .marketing-benefits-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    /* IMAGE */
    .marketing-benefits-image,
    .marketing-benefits-content {
        width: 100% !important;
    }

    /* ITEMS */
    .marketing-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 18px !important;
    }

        /* ICON */
        .marketing-item i {
            width: 38px !important;
            height: 38px !important;
            min-width: 38px !important;
            font-size: 14px !important;
            border-radius: 12px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* TEXT */
        .marketing-item div {
            flex: 1;
            min-width: 0;
        }

    .web-hero-text h1 {
        font-size: 30px !important;
        line-height: 1.3;
        font-weight: 300;
    }

    .marketing-item h3 {
        font-size: 16px !important;
        line-height: 1.35 !important;
        margin-bottom: 4px !important;
        word-break: break-word;
    }

    .marketing-item p {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin: 0 !important;
        word-break: break-word;
    }

    .marketing-hero-content h1 {
        font-size: 23px !important;
        line-height: 1.12;
    }

    .marketing-hero-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .marketing-results-v2 {
        padding: 55px 0 !important;
    }

    .results-v2-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    /* LEFT CONTENT */
    .results-v2-left,
    .results-v2-right {
        width: 100% !important;
    }

        .results-v2-left .mini-tag {
            font-size: 12px !important;
            letter-spacing: 1.5px;
            margin-bottom: 12px !important;
            display: inline-block;
        }

        .results-v2-left h2 {
            font-size: 26px !important;
            line-height: 1.25 !important;
            margin-bottom: 14px !important;
        }

        .results-v2-left p {
            font-size: 14px !important;
            line-height: 1.6 !important;
            margin-bottom: 18px !important;
        }

    .results-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }

    /* RIGHT GRID */
    .results-v2-right {
        display: grid !important;
        gap: 14px !important;
    }

    /* rows become single */
    .metric-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* CARD */
    .metric-card {
        min-height: auto !important;
        height: auto !important;
        padding: 18px 14px !important;
        border-radius: 16px !important;
    }

        .metric-card i {
            font-size: 18px !important;
            margin-bottom: 10px !important;
        }

        .metric-card h3 {
            font-size: 22px !important;
            line-height: 1.2 !important;
            margin-bottom: 4px !important;
        }

        .metric-card span {
            font-size: 14px !important;
            line-height: 1.55 !important;
        }

    .why-card-design h3 {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .design-why-left h2 {
        font-size: 24px !important;
    }

    .design-why-left p {
        font-size: 14px !important;
        line-height: 1.8 !important;
        margin-bottom: 28px !important;
        max-width: 100%;
    }

    .design-why-left h2 {
        margin-bottom: 6px !important;
    }

    .design-benefits-content h2 {
        font-size: 24px !important;
        line-height: 1.15 !important;
    }

    .design-benefits-content p {
        font-size: 14px;
    }

    .design-benefits-content p {
        color: #64748b;
        margin: 6px 0 30px;
        line-height: 1.8;
    }

    .design-item h4 {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .design-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.12 !important;
    }

    .design-hero-content p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        max-width: 680px;
        margin: auto;
        margin-top: 6px;
    }

    .hero-stats h3 {
        color: #fff;
        font-size: 26px;
    }

    .hero-stats div {
        padding: 0px;
    }
}





/* 768 Tablet */
@media (max-width:768px) {


    .design-benefits-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        object-fit: cover;
        border-radius: 24px;
    }
}


/* 320 Small Mobile */
@media (max-width:320px) {

    .hero-stats div {
        padding: 0px;
    }

    .uiux-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.2;
        color: #fff;
        margin-bottom: 6px;
    }

    .uiux-benefits-content h2 {
        font-size: 24px !important;
        line-height: 1.3;
        color: #0f172a;
        margin-top: 6px;
    }
}




/* =========================================
   FULL SIDEBAR MENU FINAL
   1024 + 768 + 480 + 320
   Premium Same Design All Devices
   Paste CSS LAST
========================================= */

/* DEFAULT DESKTOP */
.menu-toggle,
.hamburger,
.menu-btn,
.nav-toggle,
.menu-overlay,
.menu-close {
    display: none;
}

/* =========================================
   1024 AND BELOW
========================================= */
@media (max-width:1024px) {

    html,
    body {
        overflow-x: hidden;
    }

    /* NAVBAR */
    .nav-flex {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px;
    }

    .logo {
        flex-shrink: 0;
    }

        .logo img {
            width: 72px !important;
            height: auto !important;
        }

        .logo span {
            font-size: 17px !important;
        }

    /* HAMBURGER */
    .menu-toggle,
    .hamburger,
    .menu-btn,
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 14px;
        cursor: pointer;
        color: #fff;
        font-size: 19px;
        background: linear-gradient(135deg, #00bcd4, #3b82f6);
        box-shadow: 0 12px 24px rgba(59, 130, 246, .22);
        transition: .3s ease;
    }

        .menu-toggle:hover,
        .hamburger:hover,
        .menu-btn:hover,
        .nav-toggle:hover {
            transform: translateY(-2px) scale(1.03);
        }

    /* OVERLAY */
    .menu-overlay {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        opacity: 0;
        visibility: hidden;
        transition: .35s ease;
        z-index: 9998;
    }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

    /* SIDEBAR */
    .menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        padding: 88px 22px 24px;
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        overflow-y: auto;
        box-shadow: -25px 0 55px rgba(0, 0, 0, .14);
        transition: .45s ease;
        z-index: 9999;
    }

        /* OPEN */
        .menu.active {
            right: 0 !important;
        }

    /* CLOSE BTN */
    .menu-close {
        display: flex !important;
        position: absolute;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        background: #eff6ff;
        color: #111;
        font-size: 20px;
        cursor: pointer;
    }

    /* LINKS */
    .menu a {
        width: 100%;
        text-decoration: none;
        padding: 15px 16px;
        border-radius: 14px;
        color: black !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        transition: .3s ease;
    }

        .menu a:hover,
        .menu a.active {
            background: linear-gradient(135deg, #00bcd4, #3b82f6);
            color: #fff !important;
            transform: translateX(6px);
        }

    /* DESKTOP LOGIN HIDE */
    .nav-flex > .login-btn {
        display: none !important;
    }

    /* LOGIN INSIDE MENU */
    .menu .login-btn,
    .mobile-login {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        padding: 15px;
        border-radius: 14px;
        color: #fff !important;
        background: linear-gradient(135deg, #00bcd4, #3b82f6);
    }
}

/* =========================================
   768
========================================= */
@media (max-width:768px) {

    .logo img {
        width: 66px !important;
    }

    .logo span {
        font-size: 16px !important;
    }

    .menu {
        width: 300px;
        padding: 84px 20px 22px;
    }

        .menu a {
            font-size: 15px !important;
        }
}

/* =========================================
   480
========================================= */
@media (max-width:480px) {

    .logo img {
        width: 58px !important;
    }

    .logo span {
        font-size: 15px !important;
    }

    .menu-toggle,
    .hamburger,
    .menu-btn,
    .nav-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 18px;
    }

    .menu {
        width: 280px;
        max-width: 88%;
        padding: 80px 16px 20px;
    }

        .menu a {
            padding: 14px;
            font-size: 15px !important;
            border-radius: 12px;
        }
}

/* =========================================
   320
========================================= */
@media (max-width:320px) {

    .logo img {
        width: 52px !important;
    }

    .logo span {
        font-size: 14px !important;
    }

    .menu {
        width: 255px;
        max-width: 90%;
    }

        .menu a {
            font-size: 14px !important;
            padding: 13px 12px;
        }

    .menu-toggle,
    .hamburger,
    .menu-btn,
    .nav-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* =========================================
   SIDEBAR CLOSE BUTTON
========================================= */

.menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #00bcd4, #3b82f6);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(59, 130, 246, .22);
    transition: .3s ease;
    z-index: 10000;
}

    .menu-close:hover {
        transform: rotate(90deg) scale(1.05);
    }

/* mobile */
@media (max-width:480px) {
    .menu-close {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

button#menuClose {
    display: none;
}

/* =====================================
   FINAL SERVICES DROPDOWN FIX
   CLICK se open hoga
===================================== */

/* parent */
.menu .dropdown {
    position: relative;
    list-style: none;
}

/* default hide */
.menu .dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    z-index: 9999;
}

/* hover disable */
.menu .dropdown:hover .dropdown-menu {
    display: none !important;
}

/* click open */
.menu .dropdown.active .dropdown-menu {
    display: block !important;
}

/* =====================================
   DROPDOWN MENU COLOR PREMIUM FIX
===================================== */

.menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 14px 0;
    border-radius: 16px;
    /* COLOR */
    background: linear-gradient(135deg, #08142e, #0d2248, #13356d) !important;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
    z-index: 9999;
}

/* click open */
.menu .dropdown.active .dropdown-menu {
    display: block !important;
    margin-top: 20px;
}

/* links */
.menu .dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}

    /* hover */
    .menu .dropdown-menu a:hover {
        background: rgba(255, 255, 255, .08);
        color: #00e0ff !important;
        padding-left: 26px;
    }

    /* divider optional */
    .menu .dropdown-menu a:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }


/* ==========================================
   SAME HEADING SIZE FOR ALL PAGES
   MOBILE + TABLET + LAPTOP
========================================== */

/* Desktop Default */
.section-header h2,
.section-title,
.choose-left h2,
.showcase-content h2,
.web-hero-text h1,
.faq-head h2,
.portfolio-head h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: bold;
}

/* ===============================
   1024px Laptop / Small Desktop
================================ */
@media (max-width:1024px) {

    .section-header h2,
    .section-title,
    .choose-left h2,
    .showcase-content h2,
    .web-hero-text h1,
    .hero-text h1,
    .faq-head h2,
    .portfolio-head h2 {
        font-size: 40px !important;
        line-height: 1.25;
    }
}

/* ===============================
   768px Tablet
================================ */
@media (max-width:768px) {

    .section-header h2,
    .section-title,
    .choose-left h2,
    .showcase-content h2,
    .web-hero-text h1,
    .hero-text h1,
    .faq-head h2,
    .portfolio-head h2 {
        font-size: 34px !important;
        line-height: 1.3;
        text-align: center;
    }
}

/* ===============================
   480px Mobile
================================ */
@media (max-width:480px) {

    .section-header h2,
    .section-title,
    .choose-left h2,
    .showcase-content h2,
    .web-hero-text h1,
    .hero-text h1,
    .faq-head h2,
    .portfolio-head h2 {
        font-size: 26px !important;
        line-height: 1.35;
        text-align: center;
    }
}

/* ===============================
   375px Small Mobile
================================ */
@media (max-width:375px) {

    .section-header h2,
    .section-title,
    .choose-left h2,
    .showcase-content h2,
    .web-hero-text h1,
    .hero-text h1,
    .faq-head h2,
    .portfolio-head h2 {
        font-size: 24px !important;
        line-height: 1.4;
    }
}

/* ===============================
   320px Extra Small Mobile
================================ */
@media (max-width:320px) {

    .section-header h2,
    .section-title,
    .choose-left h2,
    .showcase-content h2,
    .web-hero-text h1,
    .hero-text h1,
    .faq-head h2,
    .portfolio-head h2 {
        font-size: 20px !important;
        line-height: 1.45;
    }
}

/* ==========================================
   APP PAGE SAME HEADING SIZE FULL RESPONSIVE
   1024 / 768 / 480 / 375 / 320
========================================== */

/* Desktop Default */
.app-head h2,
.app-tech-head h2,
.app-port-head h2,
.faq-head h2,
.section-title,
.app-why-left h2,
.benefits-content h2,
.app-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

/* ===============================
   1024px Laptop
================================ */
@media (max-width:1024px) {

    .app-head h2,
    .app-tech-head h2,
    .app-port-head h2,
    .faq-head h2,
    .section-title,
    .app-why-left h2,
    .benefits-content h2,
    .app-hero-content h1 {
        font-size: 40px !important;
        line-height: 1.25;
    }

    .mini-tag h2 {
        font-size: 39px !important;
    }
}

/* ===============================
   768px Tablet
================================ */
@media (max-width:768px) {

    .app-head h2,
    .app-tech-head h2,
    .app-port-head h2,
    .faq-head h2,
    .section-title,
    .app-why-left h2,
    .benefits-content h2,
    .app-hero-content h1 {
        font-size: 34px !important;
        line-height: 1.3;
    }
}

/* ===============================
   480px Mobile
================================ */
@media (max-width:480px) {

    .app-head h2,
    .app-tech-head h2,
    .app-port-head h2,
    .faq-head h2,
    .section-title,
    .app-why-left h2,
    .benefits-content h2,
    .app-hero-content h1 {
        font-size: 26px !important;
        line-height: 1.35;
    }
}

/* ===============================
   375px Small Mobile
================================ */
@media (max-width:375px) {

    .app-head h2,
    .app-tech-head h2,
    .app-port-head h2,
    .faq-head h2,
    .section-title,
    .app-why-left h2,
    .benefits-content h2,
    .app-hero-content h1 {
        font-size: 23px !important;
        line-height: 1.4;
    }
}

/* ===============================
   320px Extra Small Mobile
================================ */
@media (max-width:320px) {

    .app-head h2,
    .app-tech-head h2,
    .app-port-head h2,
    .faq-head h2,
    .section-title,
    .app-why-left h2,
    .benefits-content h2,
    .app-hero-content h1 {
        font-size: 19px !important;
        line-height: 1.45;
    }

    .app-hero-content p {
        color: #94a3b8;
        margin: 22px 0 35px;
        line-height: 1.7;
        font-size: 14px !important;
    }
}

/* ==========================================
   SMART BUSINESS PAGE SAME HEADING SIZE
   FULL RESPONSIVE SYSTEM
   1024 / 768 / 480 / 375 / 320
========================================== */

/* Desktop Default */
.software-head h2,
.industries-head h2,
.faq-head h2,
.section-title,
.why-v2-left h2,
.software-benefits-content h2,
.software-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

/* ===============================
   1024px Laptop
================================ */
@media (max-width:1024px) {

    .software-head h2,
    .industries-head h2,
    .faq-head h2,
    .section-title,
    .software-benefits-content h2,
    .software-hero-content h1 {
        font-size: 40px !important;
        line-height: 1.25;
    }
}

/* ===============================
   768px Tablet
================================ */
@media (max-width:768px) {

    .software-head h2,
    .industries-head h2,
    .faq-head h2,
    .section-title,
    .why-v2-left h2,
    .software-benefits-content h2,
    .software-hero-content h1 {
        font-size: 34px !important;
        line-height: 1.3;
    }
}

/* ===============================
   480px Mobile
================================ */
@media (max-width:480px) {

    .software-head h2,
    .industries-head h2,
    .faq-head h2,
    .section-title,
    .why-v2-left h2,
    .software-benefits-content h2,
    .software-hero-content h1 {
        font-size: 28px !important;
        line-height: 1.35;
    }

    .growth-box::before {
        display: none;
    }
}

/* ===============================
   375px Small Mobile
================================ */
@media (max-width:375px) {

    .software-head h2,
    .industries-head h2,
    .faq-head h2,
    .section-title,
    .why-v2-left h2,
    .software-benefits-content h2,
    .software-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.4;
    }
}

/* ===============================
   320px Extra Small Mobile
================================ */
@media (max-width:320px) {

    .software-head h2,
    .industries-head h2,
    .faq-head h2,
    .section-title,
    .why-v2-left h2,
    .software-benefits-content h2,
    .software-hero-content h1 {
        font-size: 21px !important;
        line-height: 1.45;
    }
}

/* ==========================================
   DIGITAL MARKETING PAGE SAME HEADING SIZE
   FULL RESPONSIVE SYSTEM
   1024 / 768 / 480 / 375 / 320
========================================== */

/* Desktop Default */
.marketing-head h2,
.faq-head h2,
.section-title,
.marketing-why-left h2,
.results-v2-left h2,
.marketing-benefits-content h2,
.marketing-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

/* ===============================
   1024px Laptop
================================ */
@media (max-width:1024px) {

    .marketing-head h2,
    .faq-head h2,
    .section-title,
    .marketing-why-left h2,
    .results-v2-left h2,
    .marketing-benefits-content h2,
    .marketing-hero-content h1 {
        font-size: 40px !important;
        line-height: 1.25;
    }
}

/* ===============================
   768px Tablet
================================ */
@media (max-width:768px) {

    .marketing-head h2,
    .faq-head h2,
    .section-title,
    .marketing-why-left h2,
    .results-v2-left h2,
    .marketing-benefits-content h2,
    .marketing-hero-content h1 {
        font-size: 34px !important;
        line-height: 1.3;
    }
}

/* ===============================
   480px Mobile
================================ */
@media (max-width:480px) {

    .marketing-head h2,
    .faq-head h2,
    .section-title,
    .marketing-why-left h2,
    .results-v2-left h2,
    .marketing-benefits-content h2,
    .marketing-hero-content h1 {
        font-size: 28px !important;
        line-height: 1.35;
    }
}

/* ===============================
   375px Small Mobile
================================ */
@media (max-width:375px) {

    .marketing-head h2,
    .faq-head h2,
    .section-title,
    .marketing-why-left h2,
    .results-v2-left h2,
    .marketing-benefits-content h2,
    .marketing-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.4;
    }
}

/* ===============================
   320px Extra Small Mobile
================================ */
@media (max-width:320px) {

    .marketing-head h2,
    .faq-head h2,
    .section-title,
    .marketing-why-left h2,
    .results-v2-left h2,
    .marketing-benefits-content h2,
    .marketing-hero-content h1 {
        font-size: 21px !important;
        line-height: 1.45;
    }
}

/* ==========================================
   GRAPHIC DESIGN PAGE SAME HEADING SIZE
   FULL RESPONSIVE SYSTEM
   1024 / 768 / 480 / 375 / 320
========================================== */

/* Desktop Default */
.design-head h2,
.portfolio-head-design h2,
.faq-head h2,
.section-title,
.design-why-left h2,
.design-benefits-content h2,
.design-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

/* ===============================
   1024px Laptop
================================ */
@media (max-width:1024px) {

    .design-head h2,
    .portfolio-head-design h2,
    .faq-head h2,
    .section-title,
    .design-why-left h2,
    .design-benefits-content h2,
    .design-hero-content h1 {
        font-size: 40px !important;
        line-height: 1.25;
    }

    .mini-tag h2 {
        font-size: 38px !important;
    }
}

/* ===============================
   768px Tablet
================================ */
@media (max-width:768px) {

    .design-head h2,
    .portfolio-head-design h2,
    .faq-head h2,
    .section-title,
    .design-why-left h2,
    .design-benefits-content h2,
    .design-hero-content h1 {
        font-size: 34px !important;
        line-height: 1.3;
    }
}

/* ===============================
   480px Mobile
================================ */
@media (max-width:480px) {

    .design-head h2,
    .portfolio-head-design h2,
    .faq-head h2,
    .section-title,
    .design-why-left h2,
    .design-benefits-content h2,
    .design-hero-content h1 {
        font-size: 28px !important;
        line-height: 1.35;
    }
}

/* ===============================
   375px Small Mobile
================================ */
@media (max-width:375px) {

    .design-head h2,
    .portfolio-head-design h2,
    .faq-head h2,
    .section-title,
    .design-why-left h2,
    .design-benefits-content h2,
    .design-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.4;
    }
}

/* ===============================
   320px Extra Small Mobile
================================ */
@media (max-width:320px) {

    .design-head h2,
    .portfolio-head-design h2,
    .faq-head h2,
    .section-title,
    .design-why-left h2,
    .design-benefits-content h2,
    .design-hero-content h1 {
        font-size: 21px !important;
        line-height: 1.45;
    }
}

/* ==========================================
   UI/UX PAGE SAME HEADING SIZE
   FULL RESPONSIVE SYSTEM
   1024 / 768 / 480 / 375 / 320
========================================== */

/* Desktop Default */
.uiux-head h2,
.portfolio-head-uiux h2,
.faq-head h2,
.section-title,
.uiux-why-left h2,
.uiux-benefits-content h2,
.uiux-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

/* ===============================
   1024px Laptop
================================ */
@media (max-width:1024px) {

    .uiux-head h2,
    .portfolio-head-uiux h2,
    .faq-head h2,
    .section-title,
    .uiux-why-left h2,
    .uiux-hero-content h1 {
        font-size: 40px !important;
        line-height: 1.25;
    }
}

/* ===============================
   768px Tablet
================================ */
@media (max-width:768px) {

    .uiux-head h2,
    .portfolio-head-uiux h2,
    .faq-head h2,
    .section-title,
    .uiux-why-left h2,
    .uiux-benefits-content h2,
    .uiux-hero-content h1 {
        font-size: 34px !important;
        line-height: 1.3;
    }
}

/* ===============================
   480px Mobile
================================ */
@media (max-width:480px) {

    .uiux-head h2,
    .portfolio-head-uiux h2,
    .faq-head h2,
    .section-title,
    .uiux-why-left h2,
    .uiux-benefits-content h2,
    .uiux-hero-content h1 {
        font-size: 28px !important;
        line-height: 1.35;
    }
}

/* ===============================
   375px Small Mobile
================================ */
@media (max-width:375px) {

    .uiux-head h2,
    .portfolio-head-uiux h2,
    .faq-head h2,
    .section-title,
    .uiux-why-left h2,
    .uiux-benefits-content h2,
    .uiux-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.4;
    }
}

/* ===============================
   320px Extra Small Mobile
================================ */
@media (max-width:320px) {

    .uiux-head h2,
    .portfolio-head-uiux h2,
    .faq-head h2,
    .section-title,
    .uiux-why-left h2,
    .uiux-benefits-content h2,
    .uiux-hero-content h1 {
        font-size: 21px !important;
        line-height: 1.45;
    }
}

/* ==========================================
   ABOUT PAGE SAME HEADING SIZE
   FULL RESPONSIVE SYSTEM
   1024 / 768 / 480 / 375 / 320
========================================== */

/* Desktop Default */
.mv-split-head h2,
.team-light-head h2,
.journey-head h2,
.faq-head h2,
.section-title,
.about-story-content h2,
.about-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

.growth-content.show h2 {
    opacity: 1;
    transform: translateY(0);
    width: 60%;
}
/* ===============================
   1024px Laptop
================================ */
@media (max-width:1024px) {

    .mv-split-head h2,
    .team-light-head h2,
    .journey-head h2,
    .faq-head h2,
    .section-title,
    .about-story-content h2,
    .about-hero-content h1 {
        font-size: 40px !important;
        line-height: 1.25;
    }

    .growth-content.show h2 {
        opacity: 1;
        transform: translateY(0);
        width: 100%;
    }

    .counter-item h2 {
        font-size: 66px;
        font-weight: bold;
    }
}

/* ===============================
   768px Tablet
================================ */
@media (max-width:768px) {

    .mv-split-head h2,
    .team-light-head h2,
    .journey-head h2,
    .faq-head h2,
    .section-title,
    .about-story-content h2,
    .about-hero-content h1 {
        font-size: 34px !important;
        line-height: 1.3;
        text-align: center;
    }

    .about-story-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 35px;
    }

    .hero-text h1 {
        width: 100% !important;
    }

    .growth-content.show h2 {
        opacity: 1;
        transform: translateY(0);
        width: 60%;
    }
}

/* ===============================
   480px Mobile
================================ */
@media (max-width:480px) {

    .mv-split-head h2,
    .team-light-head h2,
    .journey-head h2,
    .faq-head h2,
    .section-title,
    .about-story-content h2,
    .about-hero-content h1 {
        font-size: 28px !important;
        line-height: 1.35;
        text-align: center;
    }

    .web-hero, .web-showcase, .process-section, .tech-premium, .portfolio-section, .why-choose, .parallax-testi-section, .faq-section, .holo-testimonial, .about-hero, .about-story, .mission-vision, .team-section, .contact-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .about-hero-wrap {
        gap: 0px;
        align-items: center;
    }

    .marketing-hero, .marketing-benefits, .marketing-services, .process-section, .marketing-results-v2, .marketing-why, .parallax-testi-section, .faq-section, .holo-testimonial {
        padding: 50px 0 !important;
    }

    .design-hero, .design-benefits, .design-services, .process-section, .design-portfolio, .design-why, .parallax-testi-section, .faq-section, .holo-testimonial {
        padding: 50px 0 !important;
    }

    .uiux-hero, .uiux-benefits, .uiux-services, .process-section, .uiux-portfolio, .uiux-why, .parallax-testi-section, .faq-section, .holo-testimonial {
        padding: 50px 0 !important;
    }

    .uiux-benefits-content p {
        font-size: 14px !important;
    }

    .hero-buttons a {
        width: 100% !important;
        justify-content: center;
        text-align: center;
    }

    .hero-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 26px;
        font-size: 14px;
        width: 100% !important;
    }

    .hero-text h1 {
        width: 100% !important;
    }

    .growth-content.show h2 {
        opacity: 1;
        transform: translateY(0);
        width: 100%;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ===============================
   375px Small Mobile
================================ */
@media (max-width:375px) {

    .mv-split-head h2,
    .team-light-head h2,
    .journey-head h2,
    .faq-head h2,
    .section-title,
    .about-story-content h2,
    .about-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.4;
    }
}

/* ===============================
   320px Extra Small Mobile
================================ */
@media (max-width:320px) {

    .mv-split-head h2,
    .team-light-head h2,
    .journey-head h2,
    .faq-head h2,
    .section-title,
    .about-story-content h2,
    .about-hero-content h1 {
        font-size: 21px !important;
        line-height: 1.45;
    }
}

.hero-text {
    font-weight: 300;
}



/* =====================================
   MODERN PREMIUM PRICING SECTION CSS V2
===================================== */

.pricing-section {
    padding: 110px 0;
    background: linear-gradient(180deg,#ffffff,#f3f8ff);
    position: relative;
    overflow: hidden;
}



    .pricing-section::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(59,130,246,0.08);
        bottom: -100px;
        right: -100px;
    }

    .pricing-section .container {
        position: relative;
        z-index: 2;
    }

    .pricing-section .section-header {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 65px;
    }

    .pricing-section .tag {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 30px;
        background: #e8f7fa;
        color: #0f8fa6;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 18px;
        letter-spacing: .7px;
    }

    .pricing-section h2 {
        font-size: 48px;
        font-weight: 800;
        color: #111;
        margin-bottom: 15px;
    }

    .pricing-section p {
        font-size: 18px;
        color: #666;
        line-height: 1.7;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    align-items: center;
}

.price-card {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 32px;
    padding: 38px 30px;
    box-shadow: 0 18px 55px rgba(0,0,0,.06);
    transition: .35s ease;
    position: relative;
}

    .price-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 28px 65px rgba(0,0,0,.09);
    }

    .price-card.active {
        background: linear-gradient(145deg,#0f8fa6,#167dcb);
        color: #fff;
        transform: scale(1.04);
    }

        .price-card.active h3,
        .price-card.active .price,
        .price-card.active .duration,
        .price-card.active ul li {
            color: #fff;
        }

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.price-card h3 {
    font-size: 28px;
    color: #111;
    margin-bottom: 18px;
    font-weight: 700;
}

.price {
    font-size: 52px;
    font-weight: 900;
    color: #0f8fa6;
    line-height: 1;
}

.duration {
    display: block;
    margin-top: 8px;
    margin-bottom: 26px;
    font-size: 14px;
    color: #777;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

    .price-card ul li {
        font-size: 15px;
        color: #444;
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px dashed rgba(0,0,0,.08);
    }

.price-card.active ul li {
    border-bottom: 1px dashed rgba(255,255,255,.18);
}

.price-btn {
    display: block;
    text-align: center;
    padding: 15px 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    background: #111;
    color: #fff;
    transition: .3s ease;
}

.price-card.active .price-btn {
    background: #fff;
    color: #111;
}

.price-btn:hover {
    transform: translateY(-2px);
}

/* =======================
   1024px
======================= */
@media(max-width:1024px) {

    .pricing-grid {
        gap: 20px;
    }

    .pricing-section h2 {
        font-size: 40px;
    }

    .price {
        font-size: 44px;
    }

    .price-card {
        padding: 32px 24px;
    }
}

/* =======================
   768px
======================= */
@media(max-width:768px) {

    .pricing-section {
        padding: 85px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .price-card.active {
        transform: none;
    }

    .pricing-section h2 {
        font-size: 34px;
    }

    .pricing-section p {
        font-size: 16px;
    }
}

/* =======================
   480px
======================= */
@media(max-width:480px) {

    .pricing-section h2 {
        font-size: 28px;
    }

    .price-card {
        padding: 26px 20px;
        border-radius: 24px;
    }

        .price-card h3 {
            font-size: 24px;
        }

    .price {
        font-size: 38px;
    }

    .price-btn {
        padding: 14px;
        font-size: 15px;
    }
}



/* ===============================
   CONSULTATION POPUP CSS
================================ */

.consult-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

    .consult-popup.active {
        opacity: 1;
        visibility: visible;
    }

.consult-box {
    width: 100%;
    max-width: 1050px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(40px) scale(.95);
    transition: .35s ease;
}

.consult-popup.active .consult-box {
    transform: translateY(0) scale(1);
}

.popup-left {
    padding: 55px 45px;
    background: linear-gradient(135deg,#0f8fa6,#2563eb);
    color: #fff;
}

.mini-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 18px;
}

.popup-left h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.popup-left p {
    font-size: 16px;
    line-height: 1.7;
    opacity: .92;
    margin-bottom: 28px;
}

.popup-left ul {
    list-style: none;
    padding: 0;
}

    .popup-left ul li {
        margin-bottom: 14px;
        font-size: 15px;
    }

.popup-right {
    padding: 50px 40px;
}

.input-group {
    margin-bottom: 16px;
}

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 15px 16px;
        font-size: 15px;
        outline: none;
    }

    .input-group textarea {
        min-height: 110px;
        resize: none;
    }

        .input-group input:focus,
        .input-group select:focus,
        .input-group textarea:focus {
            border-color: #0f8fa6;
        }

.submit-popup-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 14px;
    background: #0f8fa6;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

    .submit-popup-btn:hover {
        background: #0d7285;
    }

.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* 768 */
@media(max-width:768px) {

    .consult-box {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow: auto;
    }

    .popup-left {
        padding: 35px 28px;
    }

        .popup-left h2 {
            font-size: 30px;
        }

    .popup-right {
        padding: 30px 24px;
    }
}

/* 480 */
@media(max-width:480px) {

    .popup-left h2 {
        font-size: 26px;
    }

    .popup-right {
        padding: 24px 18px;
    }

    .popup-close {
        top: 10px;
        right: 10px;
    }
}

.service-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.cta-tag {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 20px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-outline {
    padding: 14px 30px;
    border: 2px solid #fff;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .cta-btn-outline:hover {
        background: #fff;
        color: #0b63ce;
    }

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
}

    .feature-item i {
        color: #00d2ff;
    }

.about-stats {
    display: flex;
    justify-content: space-between;
    margin: 35px 0;
}

    .about-stats .stat {
        text-align: center;
    }

    .about-stats h3 {
        font-size: 34px;
        color: #00d2ff;
        margin-bottom: 5px;
    }

    .about-stats span {
        color: #ddd;
        font-size: 15px;
    }

.side-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg,#0b63ce,#0b8ef5);
    overflow: hidden;
}

    .hero h1 {
        font-size: 55px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
    }

        .hero h1 span {
            color: #00d2ff;
        }

    .hero p {
        color: #eef5ff;
        margin: 25px 0;
        font-size: 18px;
    }

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

    .hero-feature span {
        color: #fff;
        font-weight: 600;
    }

    .hero-feature i {
        color: #00ff95;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    background: #fff;
    color: #0b63ce;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

.hero-btn-outline {
    padding: 15px 35px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
}

    .hero-btn-outline:hover {
        background: #fff;
        color: #0b63ce;
    }
.inner-pages {
    color: #333;
    padding: 50px;
    line-height: 50px;
}