/* =========================
   PORTFOLIO HERO
========================= */

.portfolioHero {
    width: 100%;
    min-height: 720px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}


/* MAIN CONTAINER */

.heroContainer {
    width: 100%;
    max-width: 1200px;
    min-height: 720px;
    margin: auto;
    position: relative;

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


/* =========================
   CENTER
========================= */

.heroCenter {
    width: 420px;
    text-align: center;
    position: relative;
    z-index: 5;
}


/* HEADING */

.heroCenter h1 {
    margin: 0;
    font-size: 48px;
    line-height: 2.2;
    font-weight: 500;
    color: #050505;
}

.heroCenter h1 span {
    color: #ff8446;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
}


/* SUBTITLE */

.heroSubtitle {
    margin: 12px 0 28px;
    font-size: 21px;
    color: #666;
    letter-spacing: .3px;
}


/* =========================
   PROFILE IMAGE
========================= */

.profileBox {
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
    /* border-radius: 35px; */
    /* background: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 15px 35px rgba(0,0,0,.08),
        0 2px 10px rgba(0,0,0,.03);
    overflow: hidden;
}

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


/* =========================
   CLIENTS
========================= */

.clientsBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 28px;
}

.clientAvatars {
    display: flex;
    align-items: center;
}

.clientAvatars img {
    width: 32px;
    height: 32px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #fff;

    margin-left: -5px;
}

.clientAvatars img:first-child {
    margin-left: 0;
}

.clientsBox span {
    font-size: 14px;
    color: #555;
}


/* =========================
   BUTTON
========================= */

.workBtn {
    width: 340px;
    max-width: 100%;

    min-height: 70px;

    margin: auto;

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

    text-decoration: none;

    border: 6px solid #f0f0ff;
    border-radius: 50px;

    background: #fff;

    color: #080808;

    font-size: 23px;
    font-weight: 700;

    transition: .3s ease;
}

.workBtn:hover {
    transform: translateY(-4px);
    border-color: #e6e5ff;
    box-shadow: 0 12px 25px rgba(0,0,0,.08);
}


/* =========================
   LEFT SIDE
========================= */

.heroLeft {
    position: absolute;
    left: 20px;
    top: 0;

    width: 300px;
    height: 100%;

    z-index: 3;
}


/* COMMON LEFT ICON */

.floatingIcon {
    position: absolute;

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

    animation: slowFloat 5s ease-in-out infinite;
}

.floatingIcon img {
    width: 300px;
    height: 100%;
    object-fit: contain;

    display: block;
}


/* PHOTOSHOP */

.psIcon {
    width: 150px;
    height: 150px;

    top: 20px;
    left: 95px;

    animation-delay: 0s;
}


/* ILLUSTRATOR */

.aiIcon {
    width: 180px;
    height: 180px;

    top: 225px;
    left: 20px;

    animation-delay: 1.2s;
}


/* AFTER EFFECTS */

.aeIcon {
    width: 180px;
    height: 180px;

    top: 435px;
    left: 65px;

    animation-delay: 2.2s;
}


/* =========================
   FLOAT ANIMATION
========================= */

@keyframes slowFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-22px);
    }

    100% {
        transform: translateY(0px);
    }

}


/* =========================
   RIGHT SIDE
========================= */

.heroRight {
    position: absolute;
    right: 15px;
    top: 0;

    width: 300px;
    height: 100%;

    z-index: 3;
}

.rightIcon {
    position: absolute;

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

.rightIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* CODE ICON */

.codeIcon {
    width: 150px;
    height: 150px;

    top: 20px;
    right: 55px;
}


/* WEB ICON */

.webIcon {
    width: 170px;
    height: 170px;

    top: 255px;
    right: 30px;
}


/* ARROW */

.arrowIcon {
    width: 170px;
    height: 170px;

    top: 440px;
    right: 65px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .heroLeft {
        left: -20px;
        transform: scale(.8);
    }

    .heroRight {
        right: -20px;
        transform: scale(.8);
    }

}


@media (max-width: 768px) {

    .portfolioHero {
        min-height: auto;
        padding: 70px 20px;
    }

    .heroContainer {
        min-height: auto;
    }


    /* CENTER */

    .heroCenter {
        width: 100%;
    }

    .heroCenter h1 {
        font-size: 38px;
    }

    .heroSubtitle {
        font-size: 18px;
    }


    .profileBox {
        width: 250px;
        height: 250px;
    }


    /* HIDE SIDE ICONS ON SMALL MOBILE */

    .heroLeft,
    .heroRight {
        display: none;
    }


    .workBtn {
        width: 320px;
        min-height: 64px;
        font-size: 19px;
    }

}


@media (max-width: 480px) {

    .portfolioHero {
        padding: 50px 15px;
    }

    .heroCenter h1 {
        font-size: 32px;
    }

    .profileBox {
        width: 220px;
        height: 220px;
        border-radius: 28px;
    }

    .clientsBox {
        margin-bottom: 22px;
    }

    .workBtn {
        width: 100%;
        font-size: 18px;
        border-width: 5px;
    }

}

/* =========================
   RIGHT SIDE ICONS
========================= */

.heroRight {
    position: absolute;
    right: -10px;
    top: 0;

    width: 340px;
    height: 100%;

    z-index: 3;
}

.rightIcon {
    position: absolute;

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

    /* Floating Animation */
    animation: rightFloat 6s ease-in-out infinite;
}

.rightIcon img {
    width: 250px;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* =========================
   CODE / TOP IMAGE
========================= */

.codeIcon {
    width: 190px;
    height: 190px;

    top: 10px;
    right: 45px;

    animation-delay: 0s;
}


/* =========================
   WEB / MIDDLE IMAGE
========================= */

.webIcon {
    width: 210px;
    height: 210px;

    top: 245px;
    right: 5px;

    animation-delay: 1.5s;
}


/* =========================
   ARROW / BOTTOM IMAGE
========================= */

.arrowIcon {
    width: 210px;
    height: 210px;

    top: 450px;
    right: 35px;

    animation-delay: 3s;
}


/* =========================
   RIGHT FLOAT ANIMATION
========================= */

@keyframes rightFloat {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-18px) rotate(1deg);
    }

    50% {
        transform: translateY(-30px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }

}


/* ================= ABOUT SECTION ================= */


.about-scroll-section {
    position: relative;
    height: 300vh;
    background: #fff;
}

.about-scroll-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* CENTER IMAGE */
.about-image-wrap {
    position: absolute;
    width: 430px;
    height: 560px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-sticky-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT CARD ON IMAGE */
.about-text-card {
    position: absolute;
    width: 420px;
    min-height: 240px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: #fff;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* TEXT */
.about-text-item {
    position: absolute;
    inset: 35px;

    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .6s ease,
        transform .6s ease;
}

.about-text-item.active {
    opacity: 1;
    transform: translateY(0);
}

.about-text-item span {
    font-size: 13px;
    font-weight: 700;
    color: #888;
}

.about-text-item h2 {
    margin: 12px 0 15px;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    color: #111;
}

.about-text-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* MOBILE */
@media (max-width: 768px) {

    .about-scroll-section {
        height: 300vh;
    }

    .about-sticky-img {
        width: 100%;
        height: 100%;
    }

    .about-image-wrap {
        width: 300px;
        height: 430px;
    }

    .about-text-card {
        width: 290px;
        min-height: 210px;
        padding: 25px;
    }

    .about-text-item {
        inset: 25px;
    }

    .about-text-item h2 {
        font-size: 28px;
    }

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


/* CENTER IMAGE - SMALLER */
.about-image-wrap {
    width: 360px;
    height: 480px;
}

/* WIDER TEXT CARD */
.about-text-card {
    width: 650px;
    min-height: 250px;
    padding: 40px 50px;
}

/* TEXT ITEM */
.about-text-item {
    inset: 40px 50px;
}







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

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #fff;
            color: #000;
        }

        .testimonial-section {
            width: 100%;
            min-height: 581px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fff;
        }

        .testimonial-container {
            width: 100%;
            max-width: 1034px;
            min-height: 581px;
            text-align: center;
            padding: 98px 40px 60px;
        }

        /* Heading */
        .testimonial-title {
            font-size: 65px;
            line-height: 1.2;
            font-weight: 600;
            margin-bottom: 98px;
            color:#ff8446;
        }

        /* Client */
        .client-image {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            margin: 0 auto 12px;
            background: #C0F2D0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .client-image img {
            width: 78px;
            height: 78px;
            object-fit: contain;
        }

        .client-name {
            font-size: 29px;
            line-height: 1.2;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .client-position {
            font-size: 15px;
            line-height: 1.4;
            color: #555;
            margin-bottom: 48px;
        }

        /* Testimonial */
        .testimonial-text {
            max-width: 900px;
            margin: 0 auto;
            font-size: 20px;
            line-height: 1.25;
            color: #5B5B5B;
            font-style: italic;
            font-weight: 400;
        }

        /* Mobile */
        @media (max-width: 768px) {

            .testimonial-container {
                padding: 60px 25px 50px;
            }

            .testimonial-title {
                font-size: 32px;
                margin-bottom: 70px;
            }

            .client-image {
                width: 90px;
                height: 90px;
            }

            .client-name {
                font-size: 26px;
            }

            .client-position {
                font-size: 14px;
                margin-bottom: 40px;
            }

            .testimonial-text {
                font-size: 18px;
                line-height: 1.4;
            }
        }

        @media (max-width: 480px) {

            .testimonial-container {
                padding: 50px 20px 40px;
            }

            .testimonial-title {
                font-size: 28px;
                margin-bottom: 55px;
            }

            .client-name {
                font-size: 23px;
            }

            .client-position {
                font-size: 13px;
            }

            .testimonial-text {
                font-size: 17px;
            }
        }
  


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

.tools-section {
    width: 100%;
    min-height: 800px;

    padding: 16px 36px 60px;

    background: #fff;

    position: relative;
    overflow: hidden;
}

/* Optional background image */
.tools-section::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    left: 50%;
    top: 130px;

    transform: translateX(-50%);

    background: url("images/background-image.png") center / cover no-repeat;

    z-index: 0;

    opacity: 1;
}

.tools-container {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px 24px;

    position: relative;
    z-index: 2;
}


/* OUTER CARD */
.tool-card {
    height: 400px;

    padding: 24px;

    border-radius: 48px;

    background: #F6F7FC;

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


/* INNER WHITE CARD */
.tool-inner {
    width: 100%;
    height: 100%;

    background: #fff;

    border-radius: 30px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}


/* LOGO */
.tool-inner img {
    width: 110px;
    height: 110px;

    object-fit: contain;

    margin-bottom: 24px;
}


/* TITLE */
.tool-inner h3 {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 28px;
    line-height: 1.2;

    font-weight: 400;

    color: #000;
}


/* TABLET */
@media (max-width: 900px) {

    .tools-section {
        padding: 30px 20px;
    }

    .tools-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tool-card {
        height: 350px;
    }

    .tool-inner h3 {
        font-size: 25px;
    }
}


/* MOBILE */
@media (max-width: 600px) {

    .tools-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-card {
        height: 330px;
        padding: 20px;
        border-radius: 38px;
    }

    .tool-inner {
        border-radius: 25px;
    }

    .tool-inner img {
        width: 90px;
        height: 90px;
    }

    .tool-inner h3 {
        font-size: 24px;
    }
}




.services-section {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.services-section .container {
    max-width: 1200px;
}

/* LEFT 4 COLUMNS */
.services-left {
    padding-right: 30px;
}

.services-title {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #111;
}

.service-headline {
    margin: 0;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
}

/* RIGHT 8 COLUMNS */
.services-right {
    padding-left: 40px;
}

.service-description {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
    color: #555;
}

.service-description strong {
    color: #111;
    font-weight: 700;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .services-section {
        padding: 60px 20px;
    }

    .services-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .services-right {
        padding-left: 0;
    }

    .services-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .service-headline {
        font-size: 32px;
    }

    .service-description {
        font-size: 15px;
        line-height: 1.7;
    }
}



/* ================= PORTFOLIO ================= */

.portfolio-page {
    width: 100%;
    /* background: #0c0b0b; */
    color: #fff;
    padding: 110px 6%;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.portfolio-container {
    max-width: 1200px;
    margin: auto;
}


/* ================= HEADER ================= */

.portfolio-header {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 65px;
}

.portfolio-label {
    color: #ff8446;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-header h1 {
    margin: 0;
    font-size: clamp(55px, 7vw, 95px);
    line-height: 0.88;
    letter-spacing: -4px;
    font-weight: 900;
}

.portfolio-header h1 span {
    display: block;
    color: #ff8446;
}

.portfolio-intro {
    color: #000000;
    font-size: 15px;
    line-height: 1.8;
    max-width: 430px;
    margin: 0 0 5px auto;
}


/* ================= FILTERS ================= */

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #292727;
    padding-bottom: 25px;
    margin-bottom: 45px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #363333;
    color: #aaa;
    padding: 12px 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff8446;
    border-color: #ff8446;
    color: #fff;
}


/* ================= PROJECT GRID ================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px 30px;
}


/* ================= PROJECT CARD ================= */

.portfolio-card {
    min-width: 0;
}

.project-image {
    position: relative;
    width: 100%;
    height: 390px;
    background: #ff8446;
    overflow: hidden;
}

.large-card .project-image {
    height: 500px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.portfolio-card:hover .project-image img {
    transform: scale(1.06);
}


/* ================= ORANGE OVERLAY ================= */

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgb(141 141 141);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.8);
    padding: 17px 23px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    gap: 18px;
    align-items: center;
    transition: 0.3s ease;
}

.view-project:hover {
    background: #fff;
    color: #111;
}

.view-project span {
    font-size: 18px;
}


/* ================= PROJECT INFO ================= */

.project-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #292727;
    padding-bottom: 20px;
}

.project-number {
    color: #ff8446;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.project-info h2 {
    font-size: 30px;
    line-height: 0.95;
    margin: 8px 0 0;
    letter-spacing: -1px;
    font-weight: 900;
}

.project-info h2 span {
    color: #000000;
}

.project-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    color: #777;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding-top: 5px;
}


/* ================= CTA ================= */

.portfolio-cta {
    margin-top: 110px;
    padding: 55px;
    /* background: #151313; */
    /* border: 1px solid #292727; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.portfolio-cta::before {
    /* content: ""; */
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ff8446;
    right: -60px;
    bottom: -60px;
    opacity: 0.8;
    z-index: 0;
}

.portfolio-cta h2 {
    font-size: clamp(38px, 5vw, 65px);
    line-height: 0.9;
    letter-spacing: -3px;
    margin: 0;
    font-weight: 900;
}

.portfolio-cta h2 span {
    color: #ff8446;
    display: block;
}

.portfolio-cta-btn {
    background: #ff8446;
    color: #fff;
    text-decoration: none;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.portfolio-cta-btn span {
    font-size: 18px;
}

.portfolio-cta-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-4px);
}


/* ================= HIDDEN PROJECTS ================= */

.portfolio-card.hide {
    display: none;
}


/* ================= TABLET ================= */

@media (max-width: 900px) {

    .portfolio-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-intro {
        margin: 0;
    }

    .portfolio-grid {
        gap: 50px 20px;
    }

    .project-image {
        height: 330px;
    }

    .large-card .project-image {
        height: 400px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .portfolio-page {
        padding: 75px 20px;
    }

    .portfolio-header {
        margin-bottom: 45px;
    }

    .portfolio-header h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .portfolio-intro {
        font-size: 14px;
    }

    .portfolio-filters {
        gap: 7px;
    }

    .filter-btn {
        padding: 10px 13px;
        font-size: 9px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .project-image,
    .large-card .project-image {
        height: 350px;
    }

    .project-info h2 {
        font-size: 27px;
    }

    .project-meta {
        font-size: 8px;
    }

    .portfolio-cta {
        margin-top: 75px;
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-cta h2 {
        font-size: 43px;
    }

    .portfolio-cta-btn {
        width: 100%;
        justify-content: center;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 400px) {

    .portfolio-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .portfolio-header h1 {
        font-size: 45px;
    }

    .project-image,
    .large-card .project-image {
        height: 300px;
    }

}

/* ================= FOOTER ================= */

.footer {
    width: 100%;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #000; */
    overflow: hidden;
}

/* ZAIN JAFFREY */
.cohesion-text {
    width: 100%;
    text-align: center;
    font-size: clamp(70px, 15vw, 220px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -5px;
    color: #ff6b00;
    text-transform: uppercase;
    white-space: nowrap;
}

/* COPYRIGHT - TOP RIGHT */
.copyright {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {
    .footer {
        min-height: 250px;
    }

    .cohesion-text {
        font-size: clamp(60px, 14vw, 140px);
        letter-spacing: -3px;
    }

    .copyright {
        top: 20px;
        right: 25px;
        font-size: 13px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .footer {
        min-height: 220px;
        padding: 50px 15px 30px;
    }

    .cohesion-text {
        font-size: clamp(45px, 16vw, 90px);
        letter-spacing: -2px;
    }

    .copyright {
        top: 15px;
        right: 18px;
        font-size: 11px;
    }
}

    



        .my-exp-section {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
}

.my-exp-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.my-exp-image img {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

.my-exp-content {
    max-width: 900px;
    margin: 0 auto;
}

.my-exp-content p {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    color: #222;
}

/* Mobile */
@media (max-width: 768px) {

    .my-exp-section {
        padding: 50px 20px;
    }

    .my-exp-image img {
        width: 130px;
    }

    .my-exp-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}




.custom-services-area {
    width: 100%;
    padding: 120px 6%;
    background: #f5f3ef;
    color: #111;
    overflow: hidden;
}

.custom-services-heading {
    margin-bottom: 70px;
}

.custom-services-heading span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.custom-services-heading h2 {
    margin: 0;
    font-size: clamp(45px, 7vw, 100px);
    line-height: .9;
    font-weight: 700;
    letter-spacing: -4px;
}


/* SERVICE ROW */

.custom-service-row {
    position: relative;
    display: grid;
    grid-template-columns: 8% 30% 42% 20%;
    align-items: center;
    min-height: 250px;
    padding: 45px 0;
    border-top: 1px solid rgba(0, 0, 0, .25);
    overflow: hidden;
}

.custom-service-row:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, .25);
}


/* NUMBER */

.custom-service-number {
    font-size: 14px;
    font-weight: 600;
    align-self: start;
    padding-top: 8px;
}


/* TITLE */

.custom-service-name {
    position: relative;
    z-index: 2;
}

.custom-service-name h3 {
    margin: 0;
    font-size: clamp(25px, 3vw, 48px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
}


/* DESCRIPTION */

.custom-service-description {
    position: relative;
    z-index: 2;
    padding: 0 30px;
}

.custom-service-description p {
    max-width: 500px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}


/* DECORATIVE SHAPES */

.custom-service-shape {
    width: 130px;
    height: 130px;
    justify-self: center;
    position: relative;
    z-index: 1;
    transition: transform .5s ease;
}

.custom-service-row:hover .custom-service-shape {
    transform: rotate(15deg) scale(1.08);
}


/* SHAPE 1 */

.custom-shape-one {
    background: #ff5b35;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}


/* SHAPE 2 */

.custom-shape-two {
    background: #5865f2;
    border-radius: 25px;
    transform: rotate(45deg);
}

.custom-service-row:hover .custom-shape-two {
    transform: rotate(90deg) scale(1.08);
}


/* SHAPE 3 */

.custom-shape-three {
    background: #8bc34a;
    border-radius: 50%;
}


/* SHAPE 4 */

.custom-shape-four {
    background: #ff9f43;
    border-radius: 50%;
}


/* SHAPE 5 */

.custom-shape-five {
    background: #9b59b6;
    clip-path: polygon(
        50% 0%,
        100% 25%,
        82% 100%,
        18% 100%,
        0% 25%
    );
}


/* SHAPE 6 */

.custom-shape-six {
    background: #18b7a0;
    border-radius: 20px;
    transform: rotate(30deg);
}


/* FOOTER */

.custom-services-footer {
    text-align: center;
    padding: 110px 20px 30px;
    color:#ff8446 ;
}

.custom-services-footer h3 {
    margin: 0 0 15px;
    font-size: clamp(30px, 4vw, 55px);
    letter-spacing: -2px;
}

.custom-services-footer p {
    margin: 0 auto 30px;
    max-width: 500px;
    color: #555;
    line-height: 1.6;
}

.custom-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: .3s ease;
}

.custom-service-btn span {
    font-size: 18px;
}

.custom-service-btn:hover {
    background: #ff5b35;
    color: #fff;
    transform: translateY(-3px);
}


/* TABLET */

@media (max-width: 991px) {

    .custom-services-area {
        padding: 80px 5%;
    }

    .custom-service-row {
        grid-template-columns: 10% 40% 50%;
    }

    .custom-service-shape {
        display: none;
    }

    .custom-service-description {
        padding-left: 15px;
    }
}


/* MOBILE */

@media (max-width: 767px) {

    .custom-services-area {
        padding: 70px 20px;
    }

    .custom-services-heading {
        margin-bottom: 40px;
    }

    .custom-services-heading h2 {
        letter-spacing: -2px;
    }

    .custom-service-row {
        display: block;
        min-height: auto;
        padding: 35px 0;
    }

    .custom-service-number {
        margin-bottom: 15px;
    }

    .custom-service-name h3 {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .custom-service-description {
        padding: 0;
    }

    .custom-service-description p {
        font-size: 15px;
        line-height: 1.7;
    }

    .custom-services-footer {
        padding-top: 70px;
    }
}



.portfolio-stack {
    width: 100%;
    padding: 120px 6%;
    background: #f5f3ef;
    overflow: hidden;
}

.stack-top {
    margin-bottom: 70px;
}

.stack-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.stack-top h2 {
    margin: 0;
    font-size: clamp(50px, 7vw, 100px);
    line-height: .9;
    letter-spacing: -5px;
    font-weight: 700;
}


/* GRID */

.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* CARD */

.stack-card {
    height: 330px;
    perspective: 1200px;
    cursor: pointer;
}

.stack-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}


/* FLIP */

.stack-card.is-flipped .stack-card-inner {
    transform: rotateY(180deg);
}


/* FRONT + BACK */

.stack-front,
.stack-back {
    position: absolute;
    inset: 0;
    padding: 30px;
    border-radius: 24px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* FRONT */

.stack-front {
    background: #e9e6df;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stack-front h3 {
    margin: 0 auto;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -1.5px;
    text-align: center;
}

.stack-front span,
.stack-back span {
    font-size: 12px;
    opacity: .55;
}


/* ICON */

.stack-icon {
    width: 115px;
    height: 115px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}


/* DIFFERENT ICON COLORS */

.stack-ai {
    background: #ff6a00;
    color: white;
}

.stack-ps {
    background: #153c66;
    color: #38a9ff;
}

.stack-id {
    background: #4a1717;
    color: #ff8a65;
}

.stack-pr {
    background: #241b3d;
    color: #f36bff;
}

.stack-ae {
    background: #19183e;
    color: #b59cff;
}

.stack-wp {
    background: #21759b;
    color: white;
}

.stack-wf {
    background: #146ef5;
    color: white;
}

.stack-wix {
    background: #111;
    color: white;
}

.stack-shop {
    background: #95bf47;
    color: white;
}

.stack-square {
    background: #111;
    color: white;
}

.stack-react {
    background: #20232a;
    color: #61dafb;
}

.stack-next {
    background: #111;
    color: white;
}


/* BACK */

.stack-back {
    background: #171717;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stack-back h3 {
    margin: 0;
    font-size: 25px;
}

.stack-back p {
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}


/* HOVER */

.stack-card:hover .stack-front {
    transform: translateY(-3px);
}


/* TABLET */

@media (max-width: 1100px) {

    .stack-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .portfolio-stack {
        padding: 80px 20px;
    }

    .stack-top {
        margin-bottom: 40px;
    }

    .stack-top h2 {
        letter-spacing: -3px;
    }

    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stack-card {
        height: 250px;
    }

    .stack-front,
    .stack-back {
        padding: 20px;
        border-radius: 18px;
    }

    .stack-icon {
        width: 75px;
        height: 75px;
        border-radius: 18px;
        font-size: 35px;
    }

    .stack-front h3,
    .stack-back h3 {
        font-size: 19px;
    }

    .stack-back p {
        font-size: 13px;
        line-height: 1.5;
    }
}


/* SMALL MOBILE */

@media (max-width: 450px) {

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

    .stack-card {
        height: 280px;
    }

}




.portfolio-stack {
    width: 100%;
    padding: 123px 0 109px 0%;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Background Image */
.portfolio-stack::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 70%;
    top: 50%;
    left: 50%;
    background-image: url("./imges/46613867a14318da.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);

    /* Upar-Niche Animation */
    animation: bgFloat 5s ease-in-out infinite;
    z-index: 0;
}

/* Content image ke upar rahe */
.portfolio-stack > * {
    position: relative;
    z-index: 1;
}

/* Up & Down Animation */
@keyframes bgFloat {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -56%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}


/* ================================
   HEADING
================================ */

.stack-top {
    max-width: 1200px;
    margin: 0 auto 70px;
}

.stack-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 18px;
    color: #bdbdbd;
}

.stack-top h2 {
    margin: 0;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .9;
    letter-spacing: -5px;
    font-weight: 700;
}


/* ================================
   3 CARDS PER ROW
================================ */

.stack-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* ================================
   CARD
================================ */

.stack-card {
    height: 350px;
    perspective: 1200px;
    cursor: pointer;
}

.stack-card-inner {
    width: 100%;
    height: 100%;
    position: relative;

    transform-style: preserve-3d;

    transition:
        transform .7s cubic-bezier(.4, 0, .2, 1);
}


/* Flip */

.stack-card.is-flipped .stack-card-inner {
    transform: rotateY(180deg);
}


/* ================================
   FRONT + BACK
================================ */

.stack-front,
.stack-back {
    position: absolute;
    inset: 0;

    padding: 32px;

    border-radius: 28px;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* ================================
   FRONT
================================ */

.stack-front {
    background: #f0eee9;
    color: #111;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255,255,255,.15);

    transition: transform .3s ease;
}

.stack-card:hover .stack-front {
    transform: translateY(-5px);
}

.stack-front h3 {
    margin: 0;

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

    letter-spacing: -1.5px;
}

.stack-front span {
    font-size: 12px;
    opacity: .5;
}


/* ================================
   ICON
================================ */

.stack-icon {
    width: 292px;
    height: 246px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    box-shadow:
        0 20px 40px rgba(0,0,0,.15);
}


/* ================================
   ICON COLORS
================================ */

.stack-ai {
    background: #ff6a00;
    color: white;
}

.stack-ps {
    background: #153c66;
    color: #38a9ff;
}

.stack-id {
    background: #4a1717;
    color: #ff8a65;
}

.stack-pr {
    background: #241b3d;
    color: #f36bff;
}

.stack-ae {
    background: #19183e;
    color: #b59cff;
}

.stack-wp {
    background: #21759b;
    color: white;
}

.stack-wf {
    background: #146ef5;
    color: white;
}

.stack-wix {
    background: #111111;
    color: white;
}

.stack-shop {
    background: #95bf47;
    color: white;
}

.stack-square {
    background: #111111;
    color: white;
}

.stack-react {
    background: #20232a;
    color: #61dafb;
}

.stack-next {
    background: #111111;
    color: white;
}


/* ================================
   BACK
================================ */

.stack-back {
    background: #242424;
    color: #ffffff;

    transform: rotateY(180deg);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255,255,255,.1);
}

.stack-back h3 {
    margin: 0;

    font-size: 28px;
    font-weight: 600;
}

.stack-back p {
    margin: 20px 0;

    max-width: 450px;

    font-size: 15px;
    line-height: 1.7;

    color: #cccccc;
}

.stack-back span {
    font-size: 12px;
    color: #888;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {

    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .portfolio-stack {
        padding: 80px 20px;
    }

    .stack-top {
        margin-bottom: 45px;
    }

    .stack-top h2 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .stack-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stack-card {
        height: 300px;
    }

    .stack-front,
    .stack-back {
        padding: 25px;
        border-radius: 22px;
    }

    .stack-icon {
        width: 90px;
        height: 90px;
        border-radius: 22px;
        font-size: 42px;
    }

    .stack-front h3,
    .stack-back h3 {
        font-size: 23px;
    }

}


.portfolioHero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    background: #fff;
    overflow: hidden;
}


/* BACKGROUND IMAGE MARQUEE */

.heroMarquee {
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 300px;

    transform: translateY(-50%);

    overflow: hidden;

    z-index: 1;
    pointer-events: none;
}

.marqueeTrack {
    display: flex;
    align-items: center;

    width: max-content;
    height: 100%;

    animation: imageMarquee 18s linear infinite;
}

.marqueeTrack img {
    display: block;

    width: 450px;
    height: 250px;

    object-fit: contain;

    flex-shrink: 0;

    margin-right: 80px;

    opacity: 0.15;
}


/* ANIMATION */

@keyframes imageMarquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* YOUR CONTENT ABOVE IMAGE */

.heroContainer {
    position: relative;
    z-index: 5;
}


.heroMarquee {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    background: #fff;
}

.marqueeTrack {
    display: flex;
    width: max-content;
    animation:  Zain JaffreyMove 15s linear infinite;
}

.marqueeTrack span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 300px;
    font-weight: 900;
    line-height: .8;
    letter-spacing: -20px;
    color: #ff8446;
    white-space: nowrap;
    padding-right: 80px;
}

@keyframes  ZainJaffreyMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.heroContainer {
    position: relative;
    z-index: 5;
}


.portfolio-navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 30px;
}

.nav-container {
    max-width: 1250px;
    height: 72px;

    margin: auto;
    padding: 0 12px 0 25px;

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

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid #e8e8e8;
    border-radius: 50px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


/* LOGO */

.nav-logo {
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 900;

    letter-spacing: -1.5px;

    color: #ff8446;

    transition: 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}


/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    position: relative;

    padding: 11px 17px;

    color: #555;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    border-radius: 30px;

    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #111;
    background: #f2f2f2;
}


/* SIGN UP */

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 100px;
    height: 46px;

    padding: 0 22px;

    background: #111;
    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #333;
    transform: translateY(-2px);
}


/* MOBILE BUTTON */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: 0;
    border-radius: 50%;

    background: #111;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;

    background: #fff;

    display: block;

    transition: 0.3s;
}


/* ==========================
   TABLET
========================== */

@media (max-width: 950px) {

    .nav-menu {
        gap: 0;
    }

    .nav-menu a {
        padding: 10px 10px;
        font-size: 13px;
    }

}


/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .portfolio-navbar {
        top: 12px;
        padding: 0 15px;
    }

    .nav-container {
        height: 64px;
        padding: 0 10px 0 20px;
    }

    .nav-menu {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 15px;

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

        background: rgba(255, 255, 255, 0.97);

        border: 1px solid #e8e8e8;
        border-radius: 25px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: 0.3s ease;
    }

    .nav-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}


.about-image-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

/* Both Images */
.about-sticky-img {
    position: absolute;
    width: 330px;
    height: 480px;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
}

/* LEFT IMAGE */
.about-left-img {
    left: 5%;
}

/* RIGHT IMAGE */
.about-right-img {
    right: 5%;
}


/* TEXT CARD */
.about-text-card {
    position: absolute;
    width: 650px;
    min-height: 250px;

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

    z-index: 10;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;

    padding: 40px 50px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}


/* TEXT */
.about-text-item {
    position: absolute;
    left: 50px;
    right: 50px;
    top: 40px;

    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.about-text-item.active {
    opacity: 1;
    transform: translateY(0);
}

.about-text-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
}


/* MOBILE */
@media (max-width: 768px) {

    .about-sticky-img {
        width: 150px;
        height: 250px;
    }

    .about-left-img {
        left: 0;
    }

    .about-right-img {
        right: 0;
    }

    .about-text-card {
        width: 90%;
        min-height: 230px;
        padding: 30px;
    }

    .about-text-item {
        left: 30px;
        right: 30px;
        top: 30px;
    }

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



/* ==============================
   SCROLL FORM SECTION
============================== */

.scroll-form-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}


/* LEFT CONTENT */

.scroll-form-content {
    padding-top: 30px;
}

.scroll-form-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 25px;
    font-weight: 700;
    color: #ff8446;
}

.truu{
   color: #000000;
   padding: 100px;
   font-size: 32px;
   /* font-weight: 700; */
}

.scroll-form-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 100px;
    color: #555;
}

.scroll-content-space {
    min-height: 1000px;
}

.scroll-content-space h3 {
    font-size: 30px;
    margin: 0 0 15px;
}

.scroll-content-space p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 150px;
}


/* ==============================
   STICKY FORM
============================== */

.scroll-form-wrapper {
    position: sticky;
    top: 40px;
    height: fit-content;
}





.scroll-form-box h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #777;
    margin: 0 0 25px;
    font-size: 15px;
}


/* INPUTS */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #111;
}

.form-group textarea {
    resize: vertical;
}


/* BUTTON */

.scroll-form-box button {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.scroll-form-box button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 991px) {

    .scroll-form-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 20px;
    }

    .scroll-form-content h2 {
        font-size: 38px;
    }

    .scroll-form-wrapper {
        position: relative;
        top: auto;
    }

    .scroll-content-space {
        min-height: auto;
    }

    .scroll-content-space p {
        margin-bottom: 70px;
    }
}


@media (max-width: 576px) {

    .scroll-form-section {
        padding: 50px 15px;
    }

    .scroll-form-content h2 {
        font-size: 32px;
    }

    .scroll-form-box {
        padding: 25px 20px;
    }

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

.scroll-form-wrapper {
    position: sticky;
    top: 30px;
    align-self: start;
    height: fit-content;
    z-index: 10;
}


.ghgi{
    color: #000000;
    /* font-size: 24px; */
    /* font-weight: 700; */
    font-size: 60px;
    font-weight: 600;
}


html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}








.sbm-content-card {
    /* width: 52%; */
    /* height: 21%; */
    background: rgb(161 159 159 / 89%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    box-sizing: border-box;
}

.sbm-content-inner {
    max-width: 650px;
}

.sbm-content-inner h2 {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: #838080;
}

.sbm-content-inner p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
}


    .sbm-scroll-stack {
    position: relative;
    height: 400vh;
    width: 100%;
}

.sbm-stack-wrap {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.sbm-stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;

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

    transform: translateY(100%);
    will-change: transform;
}

.sbm-stack-card img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}
/* First image visible */
.sbm-card-1 {
    transform: translateY(0);
    z-index: 1;
}

.sbm-card-2 {
    z-index: 2;
}

.sbm-card-3 {
    z-index: 3;
}

.sbm-card-4 {
    z-index: 4;
}



.about-left-image-ppp {
    padding-left: 60px;
    padding-right: 15px;
}

.about-right-image-ppp {
    padding-left: 15px;
    padding-right: 60px;
}





.testimonial-section {
    width: 100%;
    padding: 100px 20px;
    overflow: hidden;
}

.testimonial-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.testimonial-title {
    margin-bottom: 60px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;

    opacity: 0;
    visibility: hidden;

    transform: translateX(50px);
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}

.client-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
}

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

.client-name {
    margin: 10px 0 5px;
    font-size: 25px;
}

.client-position {
    margin-bottom: 25px;
    opacity: 0.7;
}

.testimonial-text {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
}


/* CONTROLS */

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;

    border: 1px solid #222;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;

    font-size: 20px;

    transition: 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #222;
    color: #fff;
}


/* DOTS */

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

.testimonial-dot {
    width: 8px;
    height: 8px;

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

    cursor: pointer;

    transition: 0.3s ease;
}

.testimonial-dot.active {
    width: 25px;
    border-radius: 10px;
    background: #222;
}


/* =================================
   MOBILE HERO — FIXED
================================= */

@media (max-width: 767px) {

    /* Main section */
    #home.portfolioHero {
        width: 100%;
        min-height: 100svh;
        height: auto;
        overflow: hidden;
        padding: 70px 15px 40px !important;
        box-sizing: border-box;
    }

    /* Container */
    #home .heroContainer {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative;
        box-sizing: border-box;
    }

    /* Center content */
    #home .heroCenter {
        width: 100% !important;
        max-width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        position: relative;
        z-index: 10;
        box-sizing: border-box;
    }

    /* Heading */
    #home .heroCenter h1 {
        font-size: clamp(28px, 8vw, 38px) !important;
        line-height: 1.2 !important;
        margin: 0 0 10px !important;
        text-align: center !important;
    }

    #home .heroSubtitle {
        font-size: 16px !important;
        margin: 0 0 25px !important;
        text-align: center !important;
    }


    /* =========================
       PROFILE CARD
    ========================= */

    #home .profileBox {
        width: min(280px, 75vw) !important;
        height: min(360px, 96vw) !important;
        margin: 0 auto 25px !important;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    #home .profileFront,
    #home .profileBack {
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
        box-sizing: border-box;
    }

    #home .profileFront img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    #home .profileBack {
        padding: 20px !important;
        text-align: center !important;
    }

    #home .profileBack h2 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }

    #home .profileBack p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    #home .profileBack span {
        font-size: 12px !important;
    }


    /* =========================
       CLIENTS
    ========================= */

    #home .clientsBox {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 0 20px !important;
    }

    #home .clientAvatars {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    #home .clientAvatars img {
        width: 36px !important;
        height: 36px !important;
    }

    #home .clientsBox span {
        font-size: 14px !important;
    }


    /* =========================
       BUTTON
    ========================= */

    #home .workBtn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
        max-width: 90% !important;
        padding: 13px 22px !important;
        font-size: 14px !important;
        text-align: center !important;
        box-sizing: border-box;
    }


    /* =========================
       LEFT ICONS
    ========================= */

    #home .heroLeft {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none;
        z-index: 2;
    }

    #home .floatingIcon {
        position: absolute !important;
        width: 38px !important;
        height: 38px !important;
    }

    #home .floatingIcon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    #home .psIcon {
        left: 0 !important;
        top: 15% !important;
    }

    #home .aiIcon {
        left: 0 !important;
        top: 45% !important;
    }

    #home .aeIcon {
        left: 0 !important;
        bottom: 15% !important;
    }


    /* =========================
       RIGHT ICONS
    ========================= */

    #home .heroRight {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none;
        z-index: 2;
    }

    #home .rightIcon {
        position: absolute !important;
        width: 38px !important;
        height: 38px !important;
    }

    #home .rightIcon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    #home .codeIcon {
        right: 0 !important;
        top: 15% !important;
    }

    #home .webIcon {
        right: 0 !important;
        top: 45% !important;
    }

    #home .arrowIcon {
        right: 0 !important;
        bottom: 15% !important;
    }


    /* =========================
       BACKGROUND MARQUEE
    ========================= */

    #home .heroMarquee {
        width: 100% !important;
        max-width: 100%;
        overflow: hidden !important;
    }

    #home .marqueeTrack {
        white-space: nowrap !important;
    }

}


/* =================================
   VERY SMALL PHONES
================================= */

@media (max-width: 400px) {

    #home.portfolioHero {
        padding: 60px 10px 30px !important;
    }

    #home .heroCenter h1 {
        font-size: 30px !important;
    }

    #home .profileBox {
        width: 240px !important;
        height: 315px !important;
    }

    #home .floatingIcon,
    #home .rightIcon {
        width: 32px !important;
        height: 32px !important;
    }

}





/* =========================================
   ABOUT SECTION - MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .sbm-scroll-stack {
        width: 100%;
        height: auto !important;
        overflow: hidden;
    }

    .sbm-stack-wrap {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;

        padding: 70px 15px 50px !important;

        background-size: 300px auto !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;

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

        box-sizing: border-box;
    }


    /* ABOUT HEADING */

    .sbm-stack-wrap .ghgi {
        width: 100% !important;
        font-size: 32px !important;
        line-height: 1.2 !important;

        margin: 0 0 35px !important;
        padding: 0 !important;

        text-align: center !important;

        position: relative;
        z-index: 20;
    }


    /* =========================
       CARDS
    ========================= */

    .sbm-stack-card {
        position: relative !important;

        width: 100% !important;
        max-width: 500px !important;

        height: auto !important;
        min-height: auto !important;

        margin: 0 0 20px !important;
        padding: 0 !important;

        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;

        display: block !important;
    }


    /* CONTENT CARD */

    .sbm-content-card {
        width: 100% !important;
        min-height: 220px;

        padding: 30px 22px !important;

        box-sizing: border-box;

        border-radius: 20px;

        margin: 0 !important;

        position: relative;
        overflow: hidden;
    }


    /* TEXT */

    .sbm-content-inner {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;
    }

    .sbm-content-inner p {
        margin: 0 !important;

        font-size: 15px !important;
        line-height: 1.7 !important;

        text-align: center !important;

        word-break: normal;
        overflow-wrap: break-word;
    }


    /* CARD SPACING */

    .sbm-card-1,
    .sbm-card-2,
    .sbm-card-3 {
        margin-bottom: 20px !important;
    }

    .sbm-card-3 {
        margin-bottom: 0 !important;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .sbm-stack-wrap {
        padding: 60px 12px 40px !important;
        background-size: 250px auto !important;
    }

    .sbm-stack-wrap .ghgi {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }

    .sbm-content-card {
        min-height: 200px;
        padding: 25px 18px !important;
        border-radius: 17px;
    }

    .sbm-content-inner p {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }
}



/* =========================================
   MY STACK - MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .portfolio-stack {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        padding: 70px 15px 50px !important;
        overflow: hidden !important;
        box-sizing: border-box;
    }


    /* =========================
       HEADING
    ========================= */

    .portfolio-stack .ghgi {
        width: 100% !important;
        font-size: 32px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin: 0 0 35px !important;
        padding: 0 !important;
    }


    /* =========================
       GRID
    ========================= */

    .portfolio-stack .stack-grid {
        width: 100% !important;
        max-width: 500px !important;

        display: grid !important;

        /* MOBILE = ONE CARD PER ROW */
        grid-template-columns: 1fr !important;

        gap: 25px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        box-sizing: border-box;
    }


    /* =========================
       CARD
    ========================= */

    .portfolio-stack .stack-card {
        width: 100% !important;
        max-width: 100% !important;

        height: 330px !important;
        min-height: 330px !important;

        margin: 0 !important;
        padding: 0 !important;

        perspective: 1000px;

        box-sizing: border-box;
    }


    /* =========================
       FLIP INNER
    ========================= */

    .portfolio-stack .stack-card-inner {
        width: 100% !important;
        height: 100% !important;

        position: relative;

        transform-style: preserve-3d;

        transition: transform 0.7s ease;

        box-sizing: border-box;
    }


    /* =========================
       FRONT + BACK
    ========================= */

    .portfolio-stack .stack-front,
    .portfolio-stack .stack-back {
        position: absolute !important;

        width: 100% !important;
        height: 100% !important;

        top: 0;
        left: 0;

        border-radius: 20px !important;

        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;

        box-sizing: border-box;

        overflow: hidden;
    }


    /* =========================
       ICON
    ========================= */

    .portfolio-stack .stack-icon {
        width: 100% !important;

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

        margin-bottom: 15px !important;
    }

    .portfolio-stack .stack-icon img,
    .portfolio-stack .gdfgi {
        width: 100px !important;
        height: 100px !important;

        max-width: 100px !important;
        max-height: 100px !important;

        object-fit: contain !important;
    }


    /* =========================
       FRONT TEXT
    ========================= */

    .portfolio-stack .stack-front h3 {
        font-size: 23px !important;
        line-height: 1.2 !important;

        margin: 10px 0 !important;

        text-align: center !important;
    }

    .portfolio-stack .stack-front span {
        font-size: 13px !important;
        text-align: center !important;
    }


    /* =========================
       BACK
    ========================= */

    .portfolio-stack .stack-back {
        transform: rotateY(180deg);

        padding: 25px 20px !important;

        display: flex !important;
        flex-direction: column !important;

        justify-content: center !important;
        align-items: center !important;

        text-align: center !important;
    }


    .portfolio-stack .stack-back h3 {
        font-size: 22px !important;

        margin: 0 0 12px !important;

        text-align: center !important;
    }


    .portfolio-stack .stack-back p {
        font-size: 13px !important;

        line-height: 1.6 !important;

        margin: 0 0 15px !important;

        text-align: center !important;
    }


    .portfolio-stack .stack-back span {
        font-size: 12px !important;

        text-align: center !important;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .portfolio-stack {
        padding: 60px 12px 40px !important;
    }

    .portfolio-stack .ghgi {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }

    .portfolio-stack .stack-grid {
        gap: 20px !important;
    }

    .portfolio-stack .stack-card {
        height: 300px !important;
        min-height: 300px !important;
    }

    .portfolio-stack .stack-icon img,
    .portfolio-stack .gdfgi {
        width: 85px !important;
        height: 85px !important;
        max-width: 85px !important;
        max-height: 85px !important;
    }

    .portfolio-stack .stack-front h3 {
        font-size: 21px !important;
    }

    .portfolio-stack .stack-back {
        padding: 20px 16px !important;
    }

    .portfolio-stack .stack-back h3 {
        font-size: 20px !important;
    }

    .portfolio-stack .stack-back p {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }
}



.nav-menu a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b00;
}

/* Active link bhi orange */
.nav-menu a.active {
    color: #ff6b00;
}



/* ================= CONTACT SECTION ================= */

.contact-section {
    width: 100%;
    min-height: 850px;
    padding: 70px 7% 100px;
    background: #fffaf5;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}


/* ================= LEFT ================= */

.contact-label {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #f47716;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 27px;
}

.contact-label span {
    width: 28px;
    height: 2px;
    background: #f47716;
    display: inline-block;
}

.contact-content h1 {
    margin: 0;
    color: #111d35;
    font-size: 64px;
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -2.5px;
}

.contact-content h1 span {
    color: #f47716;
}

.contact-description {
    max-width: 530px;
    margin: 29px 0 40px;
    color: #68758a;
    font-size: 15px;
    line-height: 1.8;
}


/* ================= FORM ================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 27px;
}

.form-group label {
    display: block;
    color: #172642;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #f4c7a5;
    outline: none;
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    padding: 0 16px;
    color: #172642;
    font-size: 14px;
    transition: 0.3s ease;
}

.form-group input {
    height: 52px;
}

.form-group textarea {
    height: 115px;
    padding-top: 16px;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #c8cfd8;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f47716;
    box-shadow: 0 0 0 3px rgba(244,119,22,0.10);
}


/* ================= BUTTON ================= */

.send-btn {
    border: none;
    outline: none;
    cursor: pointer;

    height: 55px;
    padding: 5px 7px 5px 23px;

    display: flex;
    align-items: center;
    gap: 25px;

    border-radius: 35px;

    color: white;

    background: linear-gradient(
        100deg,
        #ff941f,
        #f35b0c
    );

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(244,119,22,0.25);

    transition: 0.3s ease;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(244,119,22,0.35);
}

.send-btn .arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;

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

    background: rgba(255,255,255,0.18);

    font-size: 21px;
}


/* ================= RIGHT IMAGE ================= */

.contact-visual {
    position: relative;
    min-height: 610px;
    padding-top: 20px;
}

.image-card {
    position: absolute;
    top: 0;
    right: 0;

    width: 545px;
    height: 510px;

    border-radius: 28px;
    overflow: hidden;

    box-shadow: 0 25px 60px rgba(180,85,15,0.18);
}

.image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ================= PROJECT BADGE ================= */

.project-badge {
    position: absolute;
    top: 22px;
    right: 22px;

    min-width: 174px;
    height: 78px;

    padding: 0 17px;

    background: rgba(255,255,255,0.97);
    border-radius: 15px;

    display: flex;
    align-items: center;
    gap: 13px;

    box-shadow: 0 12px 30px rgba(120,70,30,0.14);
}

.badge-icon {
    width: 40px;
    height: 40px;

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

    color: white;

    background: linear-gradient(
        135deg,
        #ff9a24,
        #f35c0c
    );

    border-radius: 10px;
    font-size: 20px;
}

.project-badge strong {
    display: block;
    color: #14233f;
    font-size: 19px;
    line-height: 1.2;
}

.project-badge small {
    display: block;
    margin-top: 4px;
    color: #7b879a;
    font-size: 9px;
}


/* ================= TESTIMONIAL ================= */

.testimonial-card {
    position: absolute;

    left: -55px;
    bottom: 25px;

    width: 325px;
    min-height: 180px;

    padding: 25px;

    box-sizing: border-box;

    background: rgba(255,255,255,0.98);
    border-radius: 23px;

    box-shadow: 0 25px 60px rgba(150,80,20,0.17);
}

.stars {
    color: #f47716;
    font-size: 13px;
    letter-spacing: 2px;
}

.quote-icon {
    position: absolute;
    right: 25px;
    top: 18px;

    color: #ffd9bd;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.testimonial-card p {
    margin: 22px 0 26px;

    color: #586983;
    font-size: 13px;
    line-height: 1.8;
}


/* ================= CLIENT ================= */

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 43px;
    height: 43px;

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

    border-radius: 50%;

    color: white;

    background: linear-gradient(
        135deg,
        #ff9824,
        #f15d0d
    );

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

.client-name {
    margin-left: 12px;
}

.client-name strong {
    display: block;
    color: #142542;
    font-size: 12px;
}

.client-name span {
    display: block;
    margin-top: 5px;
    color: #8b97a9;
    font-size: 10px;
}

.verified {
    margin-left: auto;

    width: 24px;
    height: 24px;

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

    border-radius: 50%;

    color: #f47716;
    background: #fff2e8;

    font-size: 12px;
}


/* ================= TABLET ================= */

@media (max-width: 1050px) {

    .contact-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .contact-content {
        max-width: 650px;
        margin: auto;
    }

    .contact-visual {
        width: 600px;
        max-width: 100%;
        margin: auto;
    }

    .image-card {
        position: relative;
        width: 100%;
        right: auto;
    }

    .testimonial-card {
        left: -25px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 55px 20px 80px;
    }

    .contact-content h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .contact-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-visual {
        min-height: 500px;
    }

    .image-card {
        height: 390px;
        border-radius: 20px;
    }

    .project-badge {
        top: 15px;
        right: 15px;
        min-width: 155px;
        height: 68px;
    }

    .testimonial-card {
        left: 10px;
        right: 10px;
        bottom: 0;
        width: auto;
        min-height: 170px;
        padding: 20px;
    }

    .send-btn {
        width: 190px;
        justify-content: space-between;
    }
}