/* =========================================================
   GLOBAL
========================================================= */

:root {

    --bg: #07070a;
    --bg-light: #101017;
    --card: rgba(255, 255, 255, 0.045);
    --border: rgba(255, 255, 255, 0.10);

    --text: #ffffff;
    --muted: #9d9da8;

    --accent: #7c5cff;
    --accent-2: #00d4ff;
    --green: #25d366;

    --font-main: "Manrope", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
}

button,
input,
textarea,
select {
    font-family: var(--font-main);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   BACKGROUND
========================================================= */

.background-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );

    z-index: -2;
}

.glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

.glow-one {
    background: #7c5cff;
    top: -200px;
    left: -150px;
}

.glow-two {
    background: #00d4ff;
    right: -200px;
    top: 500px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    background: rgba(7, 7, 10, 0.75);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition:
        background 0.3s ease;
}

.nav-inner {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 800;
}

.logo-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent-2)
        );

    color: #ffffff;
}

.logo-dot {
    color: var(--accent-2);
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    color: var(--muted);
    font-size: 14px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 11px 20px;

    border: 1px solid var(--border);
    border-radius: 50px;

    font-size: 14px;

    background: rgba(255, 255, 255, 0.04);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 90px;

    position: relative;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;

    align-items: center;
}

.availability {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(37, 211, 102, 0.25);

    background: rgba(37, 211, 102, 0.06);

    border-radius: 50px;

    font-size: 12px;

    color: #b8ffc9;

    margin-bottom: 25px;
}

.pulse {
    width: 7px;
    height: 7px;

    background: var(--green);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(37, 211, 102, 0.1);

    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    max-width: 750px;
}

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            #ffffff,
            #8d7cff,
            #00d4ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    background-size: 200% auto;

    animation:
        gradientMove 5s linear infinite;
}

.hero-description {
    max-width: 620px;

    margin-top: 28px;

    font-size: 17px;

    line-height: 1.8;

    color: var(--muted);
}

.hero-highlights {
    display: flex;

    gap: 40px;

    margin: 35px 0;
}

.hero-highlights div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.hero-highlights strong {
    font-size: 26px;
}

.hero-highlights small {
    color: var(--muted);
    font-size: 11px;
}

.hero-buttons,
.cta-buttons {
    display: flex;

    gap: 13px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 15px 23px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            #7c5cff,
            #6045e8
        );

    box-shadow:
        0 10px 35px rgba(124, 92, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 45px rgba(124, 92, 255, 0.4);
}

.btn-secondary {
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);

    transform: translateY(-3px);
}

.btn-light {
    background: #ffffff;

    color: #08080b;
}

.btn-light:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(255, 255, 255, 0.15);
}

.trusted {
    margin-top: 27px;

    display: flex;

    gap: 8px;

    font-size: 11px;

    color: #777783;
}

.trusted strong {
    color: #aaaab3;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: grid;
    place-items: center;
}

.code-window {
    width: min(500px, 100%);

    background: rgba(16, 16, 23, 0.9);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(124, 92, 255, 0.12);

    animation:
        floating 6s ease-in-out infinite;
}

.window-top {
    height: 48px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #4a4a52;
}

.window-title {
    font-size: 11px;
    color: #777780;
}

.code-content {
    padding: 30px;

    font-family: monospace;

    font-size: 14px;

    line-height: 2.1;

    color: #c6c6cf;
}

.indent {
    padding-left: 25px;
}

.code-purple {
    color: #c792ea;
}

.code-blue {
    color: #82aaff;
}

.code-yellow {
    color: #ffcb6b;
}

.code-green {
    color: #c3e88d;
}

.code-status {
    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    padding: 14px 20px;

    color: #8e8e99;

    font-size: 11px;
}

.status-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    margin-right: 7px;
}

.floating-card {
    position: absolute;

    padding: 14px 17px;

    display: flex;

    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    background:
        rgba(20, 20, 27, 0.85);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.floating-card span {
    font-size: 22px;
}

.floating-card strong {
    display: block;
    font-size: 12px;
}

.floating-card small {
    color: #777780;
    font-size: 9px;
}

.card-one {
    top: 70px;
    right: -10px;

    animation:
        floating 5s ease-in-out infinite;
}

.card-two {
    bottom: 60px;
    left: -30px;

    animation:
        floating 7s ease-in-out infinite reverse;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    color: #555560;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}

.scroll-indicator span {
    width: 1px;

    height: 30px;

    background:
        linear-gradient(
            white,
            transparent
        );
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 130px 0;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.eyebrow {
    display: block;

    color: #8b7cff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 17px;
}

.section-heading h2,
.experience-content h2,
.cta-box h2 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(35px, 4vw, 54px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.section-heading h2 span,
.experience-content h2 span,
.cta-box h2 span {
    color: #8c7cff;
}

.section-heading p {
    margin-top: 18px;

    color: var(--muted);

    line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.service-card {
    min-height: 260px;

    padding: 30px;

    border:
        1px solid var(--border);

    background: var(--card);

    border-radius: 16px;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(124, 92, 255, 0.4);

    background:
        rgba(124, 92, 255, 0.06);
}

.service-icon {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        rgba(124, 92, 255, 0.12);

    color: #a79bff;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 18px;

    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);

    line-height: 1.7;

    font-size: 13px;
}

.service-number {
    position: absolute;

    right: 25px;

    bottom: 20px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 50px;

    font-weight: 800;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
    padding: 130px 0;

    background:
        rgba(255, 255, 255, 0.025);

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}

.experience-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}

.experience-content > p {
    color: var(--muted);

    line-height: 1.8;

    margin-top: 22px;

    max-width: 570px;
}

.experience-points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    margin-top: 35px;
}

.experience-points div {
    display: flex;

    align-items: center;

    gap: 10px;
}

.experience-points span {
    color: var(--green);
}

.experience-points p {
    font-size: 12px;

    color: #bbbbc4;
}

.experience-stats {
    border:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.03);

    border-radius: 20px;

    padding: 35px;
}

.big-stat {
    padding-bottom: 30px;

    border-bottom:
        1px solid var(--border);
}

.big-stat strong {
    display: block;
    font-family: var(--font-main);
    font-weight: 800;

    font-size: 90px;

    line-height: 0.9;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #8170ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.big-stat span {
    display: block;

    color: var(--muted);

    margin-top: 12px;
}

.stat-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    padding: 30px 0;

    border-bottom:
        1px solid var(--border);
}

.stat-row div:first-child {
    border-right:
        1px solid var(--border);
}

.stat-row div {
    padding-left: 20px;
}

.stat-row div:first-child {
    padding-left: 0;
}

.stat-row strong {
    display: block;

    font-size: 30px;
}

.stat-row span {
    font-size: 11px;

    color: var(--muted);
}

.client-box {
    padding-top: 25px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.client-avatars {
    display: flex;
}

.client-avatars span {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    margin-left: -7px;

    background: #1c1c25;

    border:
        2px solid #111116;

    font-size: 9px;
}

.client-avatars span:first-child {
    margin-left: 0;
}

.client-box strong {
    font-size: 12px;
}

.client-box p {
    color: var(--muted);

    font-size: 10px;

    margin-top: 4px;
}


/* =========================================================
   PORTFOLIO
   DESKTOP = 3 COLUMNS
========================================================= */

.portfolio-section {
    background: #08080c;
}

.portfolio-grid {
    display: grid;

    /* 3 columns on desktop/laptop */
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.portfolio-card {
    position: relative;

    border:
        1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    background: #0e0e14;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(124, 92, 255, 0.45);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3);
}

.portfolio-preview {
    height: 210px;

    display: grid;

    place-items: center;

    position: relative;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(124, 92, 255, 0.35),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(0, 212, 255, 0.15),
            transparent 40%
        ),
        #111119;

    overflow: hidden;
}

.portfolio-preview::before {
    content: "";

    position: absolute;

    inset: 15px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 10px;
}

.portfolio-preview span {
    font-family: var(--font-main);
    font-weight: 800;

    font-size: 22px;

    font-weight: 700;

    position: relative;

    text-align: center;

    padding: 0 25px;
}

.portfolio-number {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    background:
        rgba(0, 0, 0, 0.5);

    padding: 6px 9px;

    border-radius: 6px;

    font-size: 9px;

    color: #aaaaaa;
}

.portfolio-info {
    padding: 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}

.portfolio-info h3 {
    font-size: 14px;

    line-height: 1.4;
}

.portfolio-info p {
    color: var(--muted);

    font-size: 10px;

    margin-top: 5px;
}

.arrow {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.portfolio-card:hover .arrow {
    background: #ffffff;

    color: #000000;

    transform: rotate(45deg);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 120px 0;
}

.cta-box {
    text-align: center;

    padding: 90px 30px;

    border-radius: 25px;

    border:
        1px solid rgba(124, 92, 255, 0.25);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 92, 255, 0.2),
            transparent 50%
        ),
        rgba(255, 255, 255, 0.03);

    position: relative;

    overflow: hidden;
}

.cta-box h2 {
    max-width: 700px;

    margin: 0 auto;
}

.cta-box > p {
    color: var(--muted);

    max-width: 600px;

    margin: 20px auto 30px;

    line-height: 1.7;
}

.cta-buttons {
    justify-content: center;
}

.cta-box small {
    display: block;

    color: #656570;

    margin-top: 20px;

    font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 40px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

footer p {
    color: #666670;

    font-size: 11px;

    margin-top: 10px;
}

.footer-right {
    display: flex;

    gap: 25px;

    color: #666670;

    font-size: 10px;
}

.footer-right a {
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #ffffff;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--green);

    color: #ffffff;

    box-shadow:
        0 10px 35px rgba(37, 211, 102, 0.35);

    z-index: 90;

    animation:
        whatsappPulse 2.5s infinite;

    transition:
        transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

.floating-whatsapp span {
    font-size: 25px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow:
            0 10px 35px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow:
            0 10px 45px rgba(37, 211, 102, 0.65);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}


/* =========================================================
   LARGE LAPTOP / DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .portfolio-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 24px;
    }

    .portfolio-preview {
        height: 230px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .hero-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    /*
       Portfolio becomes 2 columns
       on tablet screens.
    */
    .portfolio-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .experience-grid {
        gap: 50px;
    }
}


/* =========================================================
   SMALL LAPTOP / TABLET LANDSCAPE
========================================================= */

@media (min-width: 901px) and (max-width: 1100px) {

    .container {
        width: min(
            100% - 40px,
            1080px
        );
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .portfolio-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 15px;
    }

    .portfolio-preview {
        height: 190px;
    }

    .portfolio-preview span {
        font-size: 19px;
    }

    .portfolio-info {
        padding: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(
            100% - 28px,
            1180px
        );
    }

    .nav-cta {
        padding: 9px 14px;
    }

    .hero {
        min-height: auto;

        padding-top: 120px;

        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-highlights {
        gap: 22px;
    }

    .hero-highlights strong {
        font-size: 21px;
    }

    .hero-highlights small {
        font-size: 9px;
    }

    .trusted {
        flex-direction: column;
    }

    .hero-visual {
        min-height: 400px;
    }

    .code-window {
        width: 100%;
    }

    .code-content {
        padding: 20px;

        font-size: 11px;

        line-height: 2;
    }

    .card-one {
        right: -5px;

        top: 30px;
    }

    .card-two {
        left: -5px;

        bottom: 20px;
    }

    .section,
    .experience-section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .experience-points {
        grid-template-columns: 1fr;
    }

    .big-stat strong {
        font-size: 70px;
    }

    .portfolio-preview {
        height: 200px;
    }

    .portfolio-preview span {
        font-size: 22px;
    }

    .cta-box {
        padding: 65px 20px;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .footer-right {
        flex-direction: column;

        gap: 7px;
    }

    .floating-whatsapp {
        right: 18px;

        bottom: 18px;

        width: 54px;
        height: 54px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 40px;
    }

    .hero-highlights {
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-card span {
        font-size: 18px;
    }

}
/* =========================================================
   TESTIMONIAL CAROUSEL
========================================================= */

.testimonials-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 70px;
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.testimonial-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide {
    flex: 0 0 33.333333%;
    padding: 10px;
    box-sizing: border-box;
}

.testimonial-card {
    height: 100%;
    min-height: 290px;
    padding: 28px;
    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);

    border-radius: 20px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "“";

    position: absolute;
    right: 20px;
    top: 5px;

    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;

    color: rgba(255, 255, 255, 0.035);

    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.055);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 14px;

    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 800;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-top strong {
    display: block;

    font-size: 15px;
    font-weight: 700;

    color: #fff;
}

.testimonial-top span {
    display: block;

    margin-top: 4px;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.45);
}

.testimonial-stars {
    margin-top: 20px;

    font-size: 14px;
    letter-spacing: 3px;

    color: #f5c451;
}

.testimonial-card p {
    margin: 17px 0 22px;

    font-size: 14px;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.66);
}

.testimonial-project {
    display: inline-flex;

    padding: 7px 11px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.48);

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.07);
}


/* Navigation Buttons */

.testimonial-nav {
    width: 46px;
    height: 46px;

    min-width: 46px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.045);

    color: #fff;

    font-size: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.1);

    border-color: rgba(255, 255, 255, 0.2);

    transform: scale(1.08);
}

.testimonial-nav:active {
    transform: scale(0.95);
}


/* Controls */

.testimonial-controls {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 25px;
}

.testimonial-dots {
    display: flex;
    align-items: center;

    gap: 6px;
}

.testimonial-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.testimonial-dot.active {
    width: 22px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.8);
}

.testimonial-counter {
    display: flex;

    gap: 5px;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.3);
}

.current-testimonial {
    color: rgba(255, 255, 255, 0.8);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .testimonial-slide {
        flex: 0 0 50%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .testimonials-section {
        padding-bottom: 45px;
    }

    .testimonial-carousel {
        gap: 8px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        padding: 6px;
    }

    .testimonial-card {
        min-height: 300px;
        padding: 25px;
    }

    .testimonial-nav {
        width: 38px;
        height: 38px;
        min-width: 38px;

        font-size: 17px;
    }

    .testimonial-controls {
        margin-top: 18px;
    }

}