:root {
    --primary-orange: #ff6b35;
    --dark: #0f172a;
    --soft-bg: #fdfdfd;
    --muted: #64748b;
    --border: #e8edf2;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--soft-bg);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

::selection {
    background: var(--primary-orange);
    color: white;
}


/* ================= NAVBAR ================= */

.navbar {
    padding: 16px 0;
    border-bottom: 1px solid #eef0f3;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px);
}

.logo {
    font-size: 30px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span,
.footer-logo span {
    color: var(--primary-orange);
}

.nav-link {
    color: #334155 !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px !important;
    transition: .25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    color: white !important;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, .15);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--dark);
    border: 2px solid #d9dee5;
    border-radius: 50px;
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.btn-outline-custom:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: white;
}


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

.hero-section {
    position: relative;
    padding: 105px 0 125px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 25%, rgba(255, 107, 53, .09), transparent 30%),
        linear-gradient(135deg, #fff 0%, #fff7f3 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 107, 53, .08);
    border-radius: 50%;
    right: -250px;
    top: -200px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid #ffd7c8;
    background: #fff;
    border-radius: 50px;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.hero-section h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -2.5px;
    max-width: 720px;
    margin-bottom: 25px;
}

.hero-section h1 span,
.section-heading h2 span,
.about-section h2 span,
.contact-box h2 span {
    color: var(--primary-orange);
}

.hero-text {
    max-width: 650px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 35px;
    margin-top: 45px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
}

.hero-trust small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}


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

.hero-card {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    background: rgba(255, 107, 53, .10);
    filter: blur(55px);
    border-radius: 50%;
}

.code-window {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #101827;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(15, 23, 42, .25);
    transform: rotate(2deg);
    z-index: 2;
}

.window-top {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: #182234;
    color: #94a3b8;
    font-size: 11px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #64748b;
}

.code-content {
    padding: 35px 30px 45px;
    min-height: 330px;
    font-family: monospace;
    font-size: 14px;
    line-height: 2.1;
}

.code-purple {
    color: #c084fc;
}

.code-blue {
    color: #60a5fa;
}

.code-orange {
    color: #fb923c;
}

.code-white {
    color: #e2e8f0;
}

.code-indent {
    padding-left: 25px;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 13px 17px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

.floating-card strong {
    display: block;
    font-size: 12px;
}

.floating-card small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    margin-top: 2px;
}

.card-one {
    top: 55px;
    left: -20px;
}

.card-two {
    bottom: 55px;
    right: -15px;
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0eb;
    color: var(--primary-orange);
}

.orange-icon {
    background: #fff0eb;
}


/* ================= COMMON ================= */

.expertise-section,
.projects-section,
.blog-section {
    padding: 105px 0;
}

.section-heading {
    max-width: 650px;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 13px;
}

.section-heading h2,
.about-section h2,
.contact-box h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.section-heading p,
.about-section p {
    color: var(--muted);
    line-height: 1.8;
}


/* ================= SERVICES ================= */

.expertise-section {
    background: white;
}

.service-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ffd0bf;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .07);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #fff1eb;
    color: var(--primary-orange);
    font-size: 22px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card a,
.project-content a,
.blog-content a {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 800;
}


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

.about-section {
    padding: 110px 0;
    background: #f8fafc;
}

.about-section p {
    max-width: 580px;
    margin-bottom: 14px;
}

.about-box {
    background: var(--dark);
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .15);
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-stat:last-child {
    border-bottom: 0;
}

.about-stat strong {
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
}

.about-stat span {
    color: white;
    font-size: 14px;
    font-weight: 600;
}


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

.project-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    transition: .3s;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

.project-image {
    height: 230px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.project-image span {
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(255,255,255,.92);
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.project-one {
    background:
        linear-gradient(135deg, #172033, #ff6b35);
}

.project-two {
    background:
        linear-gradient(135deg, #ff6b35, #ffb088);
}

.project-three {
    background:
        linear-gradient(135deg, #0f172a, #475569);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
}

.project-content p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 10px 0 18px;
}


/* ================= BLOG ================= */

.blog-section {
    background: #f8fafc;
}

.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, .07);
}

.blog-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2px;
}

.blog-content {
    padding: 25px;
}

.blog-content small {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-size: 19px;
    line-height: 1.4;
    margin: 10px 0 20px;
}


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

.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 65px;
    border-radius: 30px;
    background: var(--dark);
    color: white;
}

.contact-box::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.contact-box h2 {
    margin-bottom: 15px;
}

.contact-box p {
    max-width: 650px;
    color: #94a3b8;
    line-height: 1.8;
}

.contact-box .btn-light {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 800;
}


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

.footer {
    padding: 60px 0 25px;
    background: #0a1120;
    color: white;
}

.footer-logo {
    color: white;
    font-size: 28px;
    font-weight: 800;
}

.footer p {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    transition: .2s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer hr {
    border-color: rgba(255,255,255,.08);
    margin: 40px 0 22px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #64748b;
    font-size: 11px;
}


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

@media (max-width: 991px) {

    .hero-section {
        padding: 80px 0 100px;
    }

    .hero-card {
        margin-top: 20px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

    .contact-box {
        padding: 45px;
    }

}

@media (max-width: 767px) {

    .navbar {
        padding: 13px 0;
    }

    .logo {
        font-size: 26px;
    }

    .nav-link {
        padding: 9px 0 !important;
    }

    .hero-section {
        padding: 65px 0 80px;
    }

    .hero-section h1 {
        font-size: 2.65rem;
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-trust {
        gap: 20px;
        margin-top: 35px;
    }

    .hero-trust strong {
        font-size: 15px;
    }

    .hero-card {
        min-height: 410px;
    }

    .code-window {
        transform: none;
    }

    .code-content {
        padding: 25px 20px 35px;
        font-size: 12px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .card-one {
        top: 25px;
        left: -5px;
    }

    .card-two {
        bottom: 25px;
        right: -5px;
    }

    .expertise-section,
    .projects-section,
    .blog-section,
    .about-section {
        padding: 75px 0;
    }

    .section-heading h2,
    .about-section h2,
    .contact-box h2 {
        font-size: 2.25rem;
    }

    .contact-section {
        padding: 70px 0;
    }

    .contact-box {
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

/* ================= HERO IMAGE ================= */

.hero-image-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #f8f8f8;
}

.hero-profile-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.hero-image-badge strong {
    display: block;
    font-size: 18px;
    color: #111827;
}

.hero-image-badge span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
}


/* ================= HERO DESKTOP ================= */

@media (min-width: 992px) {

    .hero-section {
        padding: 100px 0 110px;
    }

    .hero-content {
        padding-right: 20px;
    }

    .hero-profile-image {
        height: 520px;
    }

}


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

@media (max-width: 991px) {

    .hero-section {
        padding: 55px 0 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-section h1 {
        font-size: 2.65rem;
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.8;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        gap: 25px;
    }

    .hero-image-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-profile-image {
        height: 520px;
        object-position: center;
    }

}


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

@media (max-width: 576px) {

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.35rem;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-trust {
        gap: 18px;
    }

    .hero-trust strong {
        font-size: 14px;
    }

    .hero-trust small {
        font-size: 10px;
    }

    .hero-image-card {
        border-radius: 18px;
    }

    .hero-profile-image {
        height: 480px;
    }

    .hero-image-badge {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 12px 14px;
    }

    .hero-image-badge strong {
        font-size: 16px;
    }

    .hero-image-badge span {
        font-size: 11px;
    }

}