/* ============================================================
   HOME PAGE STYLES (home.css) – Light Theme
   ============================================================ */

:root {
    --bg: #f8fafc;
    --bg-soft: #f1f5f9;
    --card: #ffffff;
    --card-2: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --green: #059669;
    --cyan: #0ea5e9;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --border: rgba(0, 0, 0, .08);
    --radius: 24px;
    --shadow: 0 25px 80px rgba(0, 0, 0, .08);

    --accent-dark: #0d9488;
    --accent-soft: rgba(0, 201, 182, .08);
    --text-secondary: #475569;
    --text-light: #64748b;
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, .08);
    --ease: cubic-bezier(.23, 1, .32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Hind Siliguri", sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(14, 165, 233, .06), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(139, 92, 246, .06), transparent 28%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .06;
    background-image:
        linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
    z-index: 0;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.mono {
    font-family: "JetBrains Mono", monospace;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    color: #ffffff;
    background: var(--green);
    box-shadow: 0 4px 20px rgba(5, 150, 105, .25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, .35);
}

.btn-outline {
    color: #0f172a;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .7);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
}

/* =========================
   SECTION HEADING
========================= */
.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-kicker {
    font-family: "JetBrains Mono", monospace;
    color: var(--green);
    font-size: 13px;
    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -2.5px;
    line-height: 1.05;
    color: #0f172a;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 18px;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    margin-bottom: 22px;
}

.hero-tag::before {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(5, 150, 105, .4);
}

.hero h1 {
    font-size: clamp(46px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -4px;
    margin-bottom: 25px;
    color: #0f172a;
}

.hero h1 span {
    color: var(--cyan);
    text-shadow: 0 0 35px rgba(14, 165, 233, .18);
}

.hero-description {
    max-width: 580px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   CODE WINDOW (Hero)
========================= */
.code-window {
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
    transition: transform .3s ease;
}

.code-window:hover {
    transform: rotate(0);
}

.window-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    background: rgba(0, 0, 0, .02);
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #ffbd2e;
}

.green-dot {
    background: #28c840;
}

.window-name {
    margin-left: auto;
    margin-right: auto;
    color: #64748b;
    font-size: 12px;
    font-family: "JetBrains Mono", monospace;
}

.code-content {
    padding: 30px 25px;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    line-height: 2;
    min-height: 430px;
    overflow-x: auto;
    color: #1e293b;
}

.line {
    display: block;
    white-space: nowrap;
}

.line-number {
    display: inline-block;
    width: 35px;
    color: #94a3b8;
    user-select: none;
}

.keyword {
    color: #7c3aed;
}

.function {
    color: #2563eb;
}

.string {
    color: #16a34a;
}

.variable {
    color: #ea580c;
}

.comment {
    color: #94a3b8;
}

.cursor {
    display: inline-block;
    width: 7px;
    height: 17px;
    background: var(--green);
    vertical-align: middle;
    animation: blink .8s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* =========================
   SKILLS MARQUEE (Text)
========================= */
.skills-section--text {
    padding: 25px 0 85px;
    overflow: hidden;
}

.skills-label {
    text-align: center;
    color: #64748b;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    margin-bottom: 22px;
}

.marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    background: rgba(0, 0, 0, .01);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 24s linear infinite;
}

.skill {
    font-family: "JetBrains Mono", monospace;
    color: #334155;
    font-size: 16px;
    padding: 0 30px;
    white-space: nowrap;
}

.skill::before {
    content: "✦";
    color: var(--green);
    margin-right: 25px;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================
   WHAT WE OFFER
========================= */
.offer-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
}

.offer-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
}

.offer-card:hover {
    transform: translateY(-7px);
    border-color: rgba(14, 165, 233, .35);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.offer-card.large {
    grid-row: span 2;
    min-height: 440px;
}

.offer-number {
    font-family: "JetBrains Mono", monospace;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 80px;
}

.offer-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(5, 150, 105, .08);
    color: var(--green);
    font-size: 25px;
    margin-bottom: 25px;
}

.offer-card h3 {
    font-size: 28px;
    margin-bottom: 13px;
    color: #0f172a;
}

.offer-card p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 500px;
}

.code-decoration {
    position: absolute;
    right: 25px;
    bottom: 22px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.8;
    text-align: right;
}

.mini-offer {
    min-height: 210px;
}

.mini-offer .offer-number {
    margin-bottom: 25px;
}

.mini-offer h3 {
    font-size: 23px;
}

/* =========================
   CODEEDGE IDENTITY
========================= */
.identity {
    padding-top: 80px;
}

.identity-main {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.identity-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: #64748b;
}

.identity-code {
    padding: 45px;
    font-family: "JetBrains Mono", monospace;
    overflow-x: auto;
    color: #1e293b;
}

.identity-code .main-line {
    font-size: clamp(30px, 6vw, 70px);
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -3px;
}

.identity-code .big-green {
    color: var(--green);
}

.identity-code .big-cyan {
    color: var(--cyan);
}

.identity-code .big-purple {
    color: var(--purple);
}

.identity-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.identity-card {
    padding: 25px;
    border: 1px solid var(--border);
    background: #f8fafc;
    border-radius: 18px;
    font-family: "JetBrains Mono", monospace;
}

.identity-card span {
    display: block;
    color: #64748b;
    font-size: 11px;
    margin-bottom: 14px;
}

.identity-card strong {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* =========================
   LEARNING DASHBOARD
========================= */
.dashboard-section {
    margin-bottom: 82px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    background: var(--accent-soft);
    border: 1px solid rgba(0, 201, 182, .10);
    padding: 6px 15px;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 13px;
}

.section-heading.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Code Dashboard */
.code-dashboard {
    position: relative;
    min-height: 620px;
    padding: 45px 30px 70px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 15%, rgba(0, 201, 182, .06), transparent 32%),
        radial-gradient(circle at 15% 85%, rgba(40, 100, 180, .06), transparent 30%),
        linear-gradient(145deg, #ffffff, #f1f5f9 50%, #f8fafc);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .06);
}

.code-dashboard::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .02) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 1;
}

.main-code-window {
    position: relative;
    width: min(680px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .08),
        inset 0 1px rgba(255, 255, 255, .5);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    z-index: 3;
}

.main-code-window:hover {
    transform: rotate(0) translateY(-5px);
}

.window-top {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.window-dots {
    display: flex;
    gap: 7px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #28ca42; }

.window-title {
    margin-left: auto;
    color: #64748b;
    font-family: "JetBrains Mono", monospace;
    font-size: .58rem;
}

.main-code {
    padding: 34px 42px 38px;
    font-family: "JetBrains Mono", monospace;
    font-size: clamp(.72rem, 1.6vw, .92rem);
    line-height: 2;
    color: #1e293b;
}

.code-tag { color: #2563eb; }
.code-key { color: #db2777; }
.code-value { color: #059669; }
.code-string { color: #d97706; }
.code-comment { color: #94a3b8; }

.main-code .brand-line {
    font-size: clamp(1.15rem, 3vw, 1.75rem);
    font-weight: 700;
    margin: 5px 0 12px;
    color: #0f172a;
    letter-spacing: -.04em;
}

.main-code .slogan {
    font-size: clamp(.9rem, 2.3vw, 1.2rem);
    color: #059669;
    margin-bottom: 15px;
}

/* Floating Cards */
.code-feature {
    position: absolute;
    width: 260px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 17px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    z-index: 5;
    transition: transform .45s var(--ease), border-color .45s var(--ease);
}

.code-feature:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(0, 201, 182, .30);
}

.feature-one {
    left: 7%;
    bottom: 55px;
    transform: rotate(-1deg);
}

.feature-two {
    right: 7%;
    bottom: 25px;
    transform: rotate(1deg);
}

.feature-three {
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%) rotate(-.5deg);
}

.feature-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #0d9488;
    background: rgba(0, 201, 182, .10);
    margin-bottom: 10px;
}

.code-feature h3 {
    color: #0f172a;
    font-size: .82rem;
    margin-bottom: 6px;
}

.code-feature code {
    font-family: "JetBrains Mono", monospace;
    color: #64748b;
    font-size: .6rem;
    line-height: 1.7;
    display: block;
}

.code-feature code .green { color: #059669; }
.code-feature code .yellow { color: #d97706; }
.code-feature code .blue { color: #2563eb; }

/* =========================
   SKILLS LOGO MARQUEE
========================= */
.skills-section--logos {
    margin-bottom: 82px;
    overflow: hidden;
}

.skills-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.skills-title h2 {
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
    color: #0f172a;
}

.skills-title::after {
    content: "";
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-dark), transparent);
}

.skills-marquee {
    position: relative;
    overflow: hidden;
    padding: 12px 0;
}

.skills-marquee::before,
.skills-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 3;
    pointer-events: none;
}

.skills-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.skills-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.skills-track {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: skillsMove 28s linear infinite;
}

.skills-marquee:hover .skills-track {
    animation-play-state: paused;
}

.skill-logo {
    flex: 0 0 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    font-size: 2rem;
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    color: #1e293b;
}

.skill-logo:hover {
    transform: translateY(-6px) scale(1.06);
    border-color: rgba(14, 165, 233, .40);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.skill-logo .fa-windows { color: #00a4ef; }
.skill-logo .fa-linux { color: #f4c430; }
.skill-logo .fa-microsoft { color: #f25022; }
.skill-logo .fa-file-word { color: #2b5797; }
.skill-logo .fa-file-powerpoint { color: #d24726; }
.skill-logo .fa-file-excel { color: #217346; }
.skill-logo .fa-html5 { color: #e34f26; }
.skill-logo .fa-css3-alt { color: #1572b6; }
.skill-logo .fa-js { color: #f7df1e; }
.skill-logo .fa-react { color: #61dafb; }
.skill-logo .fa-node-js { color: #339933; }
.skill-logo .fa-database { color: #47a248; }

@keyframes skillsMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================
   FOUNDER
========================= */
.founder-section {
    width: min(1180px, calc(100% - 40px)); /* কন্টেইনারের মতো সর্বোচ্চ প্রস্থ */
    margin: 0 auto 85px;                    /* উপরে 0, ডানে-বামে auto, নিচে 85px */
    display: grid;
    grid-template-columns: 1fr .82fr;
    overflow: hidden;
    min-height: 530px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.founder-section:hover {
    border-color: rgba(14, 165, 233, .25);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.founder-content {
    padding: 60px 60px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 7px 15px;
    border-radius: 100px;
    color: var(--green);
    background: rgba(5, 150, 105, .08);
    border: 1px solid rgba(5, 150, 105, .10);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founder-quote {
    font-size: 1.28rem;
    color: #475569;
    line-height: 1.85;
    font-weight: 400;
    border-left: 4px solid var(--green);
    padding-left: 22px;
    margin-bottom: 25px;
    max-width: 650px;
}

.founder-name {
    font-size: 2rem;
    font-weight: 850;
    letter-spacing: -.04em;
    color: #0f172a;
}

.founder-name span {
    color: var(--cyan);
}

.founder-role {
    color: #64748b;
    font-size: .88rem;
    margin-bottom: 18px;
}

.founder-bio {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.85;
    max-width: 610px;
}

.founder-bio i {
    color: var(--green);
    margin-right: 5px;
}

.founder-stats {
    display: flex;
    gap: 30px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.founder-stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--green);
}

.founder-stat span {
    color: #64748b;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.founder-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    overflow: hidden;
}

.founder-image::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    /* border-radius: 50%; */
    background: radial-gradient(circle, rgba(14, 165, 233, .12), transparent 70%);
    filter: blur(12px);
    z-index: 1;
}

.founder-image::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 440px;
    /* border-radius: 50%; */
    border: 2px solid rgba(14, 165, 233, .12);
    z-index: 1;
}

.founder-photo {
    position: relative;
    z-index: 2;

    width: 240px;
    height: 360px;
    aspect-ratio: 2 / 3;

    /* border-radius: 50%; */
    object-fit: cover;
    object-position: center;

    border: 6px solid #ffffff;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08),
        0 0 40px rgba(14, 165, 233, .08);

    background: #f1f5f9;

    transition: transform .4s ease, box-shadow .4s ease;
}

.founder-photo:hover {
    transform: scale(1.02);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .12),
        0 0 60px rgba(14, 165, 233, .15);
}

.founder-image-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    color: #ffffff;
    background: var(--green);
    box-shadow: 0 12px 25px rgba(2, 245, 245, 0.35);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial-section {
    margin-bottom: 30px;
}

.testimonial-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0d9488;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

.testimonial-label::before,
.testimonial-label::after {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0d9488);
}

.testimonial-label::after {
    background: linear-gradient(90deg, #0d9488, transparent);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-header h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.04em;
}

.testimonial-header h2 span {
    background: linear-gradient(135deg, #0d9488, #00897b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-subtitle {
    color: #64748b;
    font-size: .9rem;
    margin-top: 5px;
}

.testimonial-subtitle i {
    color: #f59e0b;
}

.testimonial-container {
    overflow: hidden;
    padding: 18px 0 35px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-container.dragging {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    gap: 28px;
    align-items: stretch;
    transition: transform .7s cubic-bezier(.23, 1, .32, 1);
    will-change: transform;
}

.testimonial-track.no-transition {
    transition: none !important;
}

.testimonial-card {
    flex: 0 0 380px;
    padding: 34px 28px 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 20px;
    box-shadow:
        0 8px 30px rgba(0, 20, 40, .04),
        0 2px 8px rgba(0, 0, 0, .02);
    opacity: .35;
    transform: scale(.90);
    transition:
        transform .5s cubic-bezier(.23, 1, .32, 1),
        opacity .5s ease,
        box-shadow .5s ease,
        border-color .4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
    opacity: 0;
    transition: opacity .4s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(0, 201, 182, .20);
    box-shadow: 0 20px 60px rgba(0, 20, 40, .07);
}

.testimonial-card.active::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px) scale(1);
}

.testimonial-image {
    margin-bottom: 16px;
    position: relative;
}

.avatar-ring {
    display: inline-block;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488, #00897b);
}

.avatar-ring img {
    display: block;
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
}

.verified {
    position: absolute;
    left: 55px;
    bottom: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #0d9488;
    font-size: .65rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.stars {
    color: #f59e0b;
    font-size: .72rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    flex: 1;
    color: #334155;
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    padding-top: 17px;
    border-top: 1px solid #eef2f6;
}

.author-name {
    color: #0f172a;
    font-size: .98rem;
    font-weight: 700;
}

.author-role {
    color: #64748b;
    font-size: .76rem;
    margin: 4px 0 10px;
}

.course-tag {
    display: inline-block;
    color: #0d9488;
    background: rgba(0, 201, 182, .06);
    border: 1px solid rgba(0, 201, 182, .10);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: .65rem;
    font-weight: 700;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    border: none;
    padding: 0;
    border-radius: 50%;
    background: #dce3eb;
    cursor: pointer;
    transition: all .35s var(--ease);
}

.testimonial-dot.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d9488, #00897b);
}

/* =========================
   CTA
========================= */
.cta {
    padding-bottom: 120px;
}

.cta-box {
    text-align: center;
    padding: 70px 30px;
    border: 1px solid rgba(5, 150, 105, .15);
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(5, 150, 105, .08), transparent 55%),
        #ffffff;
}

.cta-box h2 {
    font-size: clamp(34px, 5vw, 60px);
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: #0f172a;
}

.cta-box p {
    color: #64748b;
    margin-bottom: 30px;
}

/* ============================================================
   RESPONSIVE FIXES – HOME PAGE (Full)
   ============================================================ */

/* ---------- Tablet (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
    section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding: 70px 0 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .code-window {
        max-width: 580px;
        margin: 0 auto;
        transform: none;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .offer-card.large {
        grid-row: auto;
        min-height: auto;
    }

    .identity-cards {
        grid-template-columns: 1fr 1fr;
    }

    .founder-section {
        grid-template-columns: 1fr;
        width: min(900px, calc(100% - 40px));
    }

    .founder-image {
        order: -1;
        min-height: 380px;
    }
}

/* ---------- Mobile (max-width: 800px) ---------- */
@media (max-width: 800px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: .95rem;
        line-height: 1.7;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .code-content {
        padding: 22px 15px;
        font-size: 11px;
        line-height: 1.9;
        min-height: auto;
        overflow-x: auto;
    }

    .line-number {
        width: 25px;
    }

    .identity-code {
        padding: 28px 20px;
    }

    .identity-code .main-line {
        font-size: clamp(26px, 8vw, 44px);
        white-space: normal;
    }

    .identity-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Code Dashboard */
    .code-dashboard {
        min-height: auto;
        padding: 24px 16px 30px;
        border-radius: 24px;
    }

    .main-code-window {
        transform: none;
    }

    .main-code {
        padding: 24px 18px 28px;
        line-height: 1.8;
    }

    .main-code .brand-line {
        font-size: 1rem;
    }

    .main-code .slogan {
        font-size: .78rem;
    }

    /* Floating code feature cards → stack below */
    .code-feature {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none !important;
        margin-bottom: 12px;
        border-radius: 14px;
    }

    .feature-one,
    .feature-two,
    .feature-three {
        left: 0;
        right: 0;
        bottom: 0;
        transform: none !important;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    /* Skills marquee */
    .skills-section--logos,
    .dashboard-section,
    .founder-section {
        margin-bottom: 60px;
    }

    .skills-title h2 {
        font-size: .8rem;
    }

    .skill-logo {
        flex-basis: 58px;
        height: 58px;
        font-size: 1.5rem;
        border-radius: 15px;
    }

    .skills-track {
        gap: 13px;
        animation-duration: 22s;
    }

    /* Text marquee */
    .skills-section--text {
        padding: 20px 0 60px;
    }

    .skills-label {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .skill {
        font-size: 14px;
        padding: 0 20px;
    }

    .skill::before {
        margin-right: 18px;
    }

    /* Founder */
    .founder-section {
        width: 100%;
        margin-bottom: 60px;
        min-height: auto;
    }

    .founder-content {
        padding: 40px 24px;
    }

    .founder-quote {
        font-size: 1.05rem;
        padding-left: 16px;
    }

    .founder-name {
        font-size: 1.6rem;
    }

    .founder-bio {
        font-size: .85rem;
    }

    .founder-stats {
        gap: 20px;
        margin-top: 20px;
        padding-top: 18px;
    }

    .founder-image {
        min-height: 320px;
        padding: 25px;
    }

    .founder-image::before {
        width: 280px;
        height: 280px;
    }

    .founder-image::after {
        width: 220px;
        height: 280px;
    }

    .founder-photo {
        width: 160px;
        height: 240px;
        border-width: 4px;
    }

    .founder-image-label {
        bottom: 5px;
        padding: 8px 18px;
        font-size: .6rem;
    }

    /* Testimonials */
    .testimonial-header h2 {
        font-size: 1.6rem;
    }

    .testimonial-card {
        flex-basis: 82vw;
        max-width: 320px;
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: .85rem;
        line-height: 1.65;
    }

    .testimonial-image img {
        width: 64px;
        height: 64px;
    }

    .testimonial-dot {
        width: 8px;
        height: 8px;
    }

    .testimonial-dot.active {
        width: 24px;
    }
}

/* ---------- Small Mobile (max-width: 480px) ---------- */
@media (max-width: 480px) {
    .hero {
        padding: 50px 0 40px;
    }

    .hero h1 {
        font-size: 1.9rem;
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .code-content {
        font-size: 10px;
        padding: 18px 12px;
    }

    .offer-card {
        padding: 25px;
    }

    .offer-card h3 {
        font-size: 22px;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }

    .section-heading p {
        font-size: .85rem;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .cta-box h2 {
        font-size: 1.7rem;
    }

    .cta-box p {
        font-size: .9rem;
    }

    /* Additional small-screen fixes */
    .offer-number {
        margin-bottom: 20px;
    }

    .offer-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 14px;
    }

    .code-decoration {
        font-size: 10px;
        right: 15px;
        bottom: 15px;
    }

    .identity-header {
        padding: 10px 16px;
        font-size: 10px;
    }

    .identity-code {
        padding: 20px 16px;
    }

    .identity-code .main-line {
        font-size: 26px;
    }

    .identity-card {
        padding: 20px;
    }

    .identity-card strong {
        font-size: 16px;
    }

    .dashboard-section {
        margin-bottom: 50px;
    }

    .section-eyebrow {
        font-size: .6rem;
        padding: 5px 12px;
    }

    .main-code-window {
        border-radius: 16px;
    }

    .window-top {
        height: 40px;
        padding: 0 14px;
    }

    .window-title {
        font-size: .48rem;
    }

    .main-code {
        padding: 20px 14px 24px;
        font-size: .7rem;
    }

    .main-code .brand-line {
        font-size: .95rem;
    }

    .main-code .slogan {
        font-size: .75rem;
    }

    .code-feature {
        padding: 14px;
    }

    .code-feature h3 {
        font-size: .75rem;
    }

    .code-feature code {
        font-size: .55rem;
    }

    .skills-title h2 {
        font-size: .72rem;
    }

    .skill-logo {
        flex-basis: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 13px;
    }

    .skills-track {
        gap: 10px;
        animation-duration: 20s;
    }

    .founder-content {
        padding: 30px 18px;
    }

    .founder-quote {
        font-size: .95rem;
    }

    .founder-name {
        font-size: 1.4rem;
    }

    .founder-bio {
        font-size: .8rem;
    }

    .founder-stats {
        gap: 15px;
    }

    .founder-stat strong {
        font-size: 1rem;
    }

    .founder-stat span {
        font-size: .55rem;
    }

    .founder-image {
        min-height: 260px;
        padding: 20px;
    }

    .founder-image::before {
        width: 220px;
        height: 220px;
    }

    .founder-image::after {
        width: 180px;
        height: 220px;
    }

    .founder-photo {
        width: 130px;
        height: 195px;
    }

    .founder-image-label {
        padding: 6px 14px;
        font-size: .55rem;
        bottom: 8px;
    }

    .testimonial-card {
        flex-basis: 88vw;
        max-width: 280px;
        padding: 20px 16px;
    }

    .avatar-ring img {
        width: 60px;
        height: 60px;
    }

    .verified {
        width: 20px;
        height: 20px;
        left: 42px;
        font-size: .55rem;
    }

    .stars {
        font-size: .65rem;
    }

    .testimonial-text {
        font-size: .8rem;
    }

    .author-name {
        font-size: .9rem;
    }

    .author-role {
        font-size: .7rem;
    }

    .course-tag {
        font-size: .6rem;
        padding: 3px 10px;
    }

    .testimonial-subtitle {
        font-size: .8rem;
    }
}