        /* ========================================
   WebNexa - Global Styles
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
    color: #111827;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}
/* ========================================
   WebNexa — Global Reset
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
    color: #111827;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
    border: none;
    cursor: pointer;
}


/* ========================================
   Navbar
======================================== */

.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #e8edf3;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

.nav-container {
    width: min(1180px, 92%);
    min-height: 78px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* ========================================
   Logo
======================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #4f46e5;
    color: #ffffff;

    font-size: 20px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.20);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #111827;
}

.logo-text span {
    color: #4f46e5;
}


/* ========================================
   Navigation Links
======================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;

    color: #64748b;
    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a:hover {
    color: #4f46e5;
    transform: translateY(-1px);
}

.nav-links a.active {
    color: #111827;
}

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -9px;

    height: 2px;

    border-radius: 20px;

    background: #4f46e5;
}


/* ========================================
   Navbar CTA
======================================== */

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 18px;

    border-radius: 12px;

    background: #111827;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-button span {
    font-size: 17px;
    line-height: 1;
}

.nav-button:hover {
    background: #4f46e5;
    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.20);
}


/* ========================================
   Mobile Menu Button
======================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border-radius: 11px;

    background: #f1f5f9;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 19px;
    height: 2px;

    border-radius: 10px;

    background: #111827;
}


/* ========================================
   Temporary Content
======================================== */

.temporary-content {
    min-height: calc(100vh - 78px);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
}

.temporary-content p {
    color: #4f46e5;
    font-weight: 700;
    margin-bottom: 8px;
}

.temporary-content h1 {
    font-size: clamp(35px, 6vw, 70px);
    letter-spacing: -2px;
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 850px) {

    .nav-links {
        gap: 20px;
    }

    .nav-button {
        padding: 11px 14px;
    }

}


/* ========================================
   Mobile
======================================== */

@media (max-width: 700px) {

    .nav-container {
        min-height: 70px;
    }

    .logo-mark {
        width: 37px;
        height: 37px;
        border-radius: 11px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}
/* ========================================
   WebNexa — Hero Section
======================================== */

.hero {
    position: relative;
    overflow: hidden;

    padding: 90px 0 110px;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(79, 70, 229, 0.09),
            transparent 30%
        ),
        #f8fafc;
}

.hero-container {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}


/* ========================================
   Hero Content
======================================== */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border: 1px solid #e2e8f0;
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.8);

    color: #475569;

    font-size: 12px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
}

.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #4f46e5;

    box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.10);
}


/* ========================================
   Hero Heading
======================================== */

.hero h1 {
    max-width: 700px;

    margin-top: 24px;

    color: #0f172a;

    font-size: clamp(45px, 5.2vw, 76px);

    line-height: 1.02;

    letter-spacing: -4px;

    font-weight: 800;
}

.hero h1 span {
    display: block;

    color: #4f46e5;
}


/* ========================================
   Description
======================================== */

.hero-description {
    max-width: 590px;

    margin-top: 25px;

    color: #64748b;

    font-size: 17px;

    line-height: 1.8;
}


/* ========================================
   Hero Buttons
======================================== */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 34px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 21px;

    border-radius: 13px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.primary-btn {
    gap: 10px;

    background: #111827;
    color: #ffffff;

    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.13);
}

.primary-btn span {
    font-size: 18px;
}

.primary-btn:hover {
    background: #4f46e5;

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(79, 70, 229, 0.20);
}

.secondary-btn {
    border: 1px solid #dbe2ea;

    background: #ffffff;

    color: #334155;
}

.secondary-btn:hover {
    border-color: #c7d2fe;

    background: #eef2ff;

    color: #4338ca;

    transform: translateY(-3px);
}


/* ========================================
   Trust Area
======================================== */

.hero-trust {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 38px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 34px;
    height: 34px;

    margin-left: -7px;

    display: grid;
    place-items: center;

    border: 3px solid #f8fafc;
    border-radius: 50%;

    background: #e0e7ff;

    color: #4338ca;

    font-size: 11px;
    font-weight: 800;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.hero-trust strong,
.hero-trust small {
    display: block;
}

.hero-trust strong {
    color: #334155;

    font-size: 12px;
}

.hero-trust small {
    margin-top: 2px;

    color: #94a3b8;

    font-size: 11px;
}


/* ========================================
   Hero Visual
======================================== */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: rgba(99, 102, 241, 0.10);

    filter: blur(5px);
}


/* ========================================
   Main Visual Card
======================================== */

.main-card {
    position: relative;
    z-index: 2;

    width: min(470px, 100%);

    min-height: 350px;

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.12),
        0 8px 30px rgba(79, 70, 229, 0.07);

    overflow: hidden;

    transform: rotate(2deg);

    transition: transform 0.4s ease;
}

.main-card:hover {
    transform: rotate(0deg) translateY(-5px);
}


/* ========================================
   Fake Browser Top
======================================== */

.card-top {
    height: 48px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 18px;

    border-bottom: 1px solid #edf1f5;

    background: #ffffff;
}

.window-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}


/* ========================================
   Dashboard Content
======================================== */

.dashboard-content {
    padding: 48px 42px;
}

.mini-label {
    color: #6366f1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}

.dashboard-content h3 {
    margin-top: 18px;

    color: #0f172a;

    font-size: 32px;

    line-height: 1.2;

    letter-spacing: -1.5px;
}

.dashboard-content h3 span {
    color: #4f46e5;
}

.mini-line {
    width: 80px;
    height: 4px;

    margin-top: 26px;

    border-radius: 20px;

    background: #4f46e5;
}


/* ========================================
   Mini Stats
======================================== */

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 55px;
}

.mini-stats div {
    padding: 15px;

    border: 1px solid #edf1f5;

    border-radius: 13px;

    background: #f8fafc;
}

.mini-stats strong,
.mini-stats span {
    display: block;
}

.mini-stats strong {
    color: #4f46e5;

    font-size: 20px;
}

.mini-stats span {
    margin-top: 3px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 700;
}


/* ========================================
   Floating Cards
======================================== */

.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border: 1px solid #e8edf3;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);

    animation: floatCard 4s ease-in-out infinite;
}

.floating-one {
    top: 65px;
    right: -5px;
}

.floating-two {
    bottom: 65px;
    left: -15px;

    animation-delay: 1.2s;
}

.floating-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: #eef2ff;

    color: #4f46e5;

    font-weight: 800;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: #334155;

    font-size: 11px;
}

.floating-card small {
    margin-top: 2px;

    color: #94a3b8;

    font-size: 9px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* ========================================
   Hero Responsive
======================================== */

@media (max-width: 900px) {

    .hero {
        padding: 70px 0 90px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 450px;
    }

}


@media (max-width: 600px) {

    .hero {
        padding: 55px 0 70px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .main-card {
        min-height: 300px;

        border-radius: 19px;
    }

    .dashboard-content {
        padding: 35px 25px;
    }

    .dashboard-content h3 {
        font-size: 25px;
    }

    .mini-stats {
        margin-top: 35px;
    }

    .mini-stats div {
        padding: 10px;
    }

    .floating-one {
        top: 25px;
        right: -8px;
    }

    .floating-two {
        bottom: 20px;
        left: -8px;
    }

}
/* ========================================
   WebNexa — Services Section
======================================== */

.services-section {
    position: relative;

    padding: 120px 0;

    background: #ffffff;
}

.services-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ========================================
   Section Heading
======================================== */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #4f46e5;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.section-tag span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #4f46e5;
}

.heading-row {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    align-items: end;

    gap: 70px;

    margin-top: 20px;
}

.heading-row h2 {
    max-width: 680px;

    color: #0f172a;

    font-size: clamp(38px, 4.5vw, 60px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;
}

.heading-row h2 span {
    display: block;

    color: #4f46e5;
}

.heading-row p {
    max-width: 430px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   Services Grid
======================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 65px;
}


/* ========================================
   Service Card
======================================== */

.service-card {
    position: relative;

    min-height: 330px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid #e8edf3;

    border-radius: 22px;

    background: #ffffff;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    top: -130px;
    right: -100px;

    border-radius: 50%;

    background: rgba(79, 70, 229, 0.07);

    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #c7d2fe;

    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.09);
}

.service-card:hover::before {
    transform: scale(1.4);
}


/* ========================================
   Featured Card
======================================== */

.service-featured {
    background: #111827;

    border-color: #111827;
}

.service-featured h3,
.service-featured .service-number {
    color: #ffffff;
}

.service-featured p {
    color: #a7b0c0;
}

.service-featured .service-icon {
    background: rgba(99, 102, 241, 0.18);

    color: #a5b4fc;
}

.service-featured .service-link {
    color: #c7d2fe;
}


/* ========================================
   Number
======================================== */

.service-number {
    position: absolute;

    top: 28px;
    right: 31px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* ========================================
   Service Icon
======================================== */

.service-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: #eef2ff;

    color: #4f46e5;

    font-size: 23px;
    font-weight: 700;
}


/* ========================================
   Service Content
======================================== */

.service-content {
    position: relative;
    z-index: 2;

    margin-top: 55px;
}

.service-content h3 {
    color: #0f172a;

    font-size: 24px;

    letter-spacing: -0.8px;
}

.service-content p {
    max-width: 430px;

    margin-top: 11px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.75;
}


/* ========================================
   Service Link
======================================== */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 24px;

    color: #4f46e5;

    font-size: 12px;
    font-weight: 800;
}

.service-link b {
    font-size: 15px;

    transition: transform 0.25s ease;
}

.service-card:hover .service-link b {
    transform: translate(3px, -3px);
}


/* ========================================
   Corner Arrow
======================================== */

.service-arrow {
    position: absolute;

    right: 28px;
    bottom: 27px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid #e2e8f0;

    border-radius: 50%;

    color: #64748b;

    font-size: 17px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.service-card:hover .service-arrow {
    background: #4f46e5;

    border-color: #4f46e5;

    color: #ffffff;

    transform: rotate(8deg);
}

.service-featured .service-arrow {
    border-color: #374151;

    color: #cbd5e1;
}


/* ========================================
   Bottom CTA
======================================== */

.services-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #edf1f5;
}

.services-bottom p {
    color: #94a3b8;

    font-size: 13px;
}

.services-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #334155;

    font-size: 13px;
    font-weight: 800;

    transition: color 0.25s ease;
}

.services-bottom a:hover {
    color: #4f46e5;
}

.services-bottom a span {
    font-size: 16px;
}


/* ========================================
   Services Responsive
======================================== */

@media (max-width: 850px) {

    .services-section {
        padding: 90px 0;
    }

    .heading-row {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .services-grid {
        margin-top: 45px;
    }

}


@media (max-width: 600px) {

    .services-section {
        padding: 75px 0;
    }

    .heading-row h2 {
        letter-spacing: -2px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 40px;
    }

    .service-card {
        min-height: 300px;

        padding: 25px;

        border-radius: 18px;
    }

    .service-content {
        margin-top: 48px;
    }

    .service-content h3 {
        font-size: 21px;
    }

    .service-content p {
        font-size: 13px;
    }

    .services-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}
/* ========================================
   WebNexa — Why Section
======================================== */

.why-section {
    padding: 120px 0;

    background: #f8fafc;

    border-top: 1px solid #edf1f5;
    border-bottom: 1px solid #edf1f5;
}

.why-container {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 100px;

    align-items: start;
}


/* ========================================
   Intro
======================================== */

.why-intro {
    position: sticky;
    top: 120px;
}

.why-intro h2 {
    max-width: 480px;

    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(40px, 4.5vw, 59px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.why-intro h2 span {
    display: block;

    color: #4f46e5;
}

.why-intro > p {
    max-width: 420px;

    margin-top: 22px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   Why Button
======================================== */

.why-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 30px;

    min-height: 49px;

    padding: 0 19px;

    border-radius: 12px;

    background: #111827;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.why-button:hover {
    background: #4f46e5;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(79, 70, 229, 0.18);
}

.why-button span {
    font-size: 17px;
}


/* ========================================
   Features
======================================== */

.why-features {
    border-top: 1px solid #dfe5ec;
}


/* ========================================
   Feature Item
======================================== */

.why-feature {
    display: grid;

    grid-template-columns: 42px 55px 1fr;

    gap: 20px;

    align-items: start;

    padding: 31px 0;

    border-bottom: 1px solid #dfe5ec;

    transition: padding-left 0.3s ease;
}

.why-feature:hover {
    padding-left: 10px;
}


/* ========================================
   Feature Number
======================================== */

.feature-number {
    padding-top: 4px;

    color: #94a3b8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* ========================================
   Feature Icon
======================================== */

.feature-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #e3e8ef;

    color: #4f46e5;

    font-size: 19px;

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.04);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.why-feature:hover .feature-icon {
    background: #4f46e5;

    color: #ffffff;

    transform: rotate(-5deg);
}


/* ========================================
   Feature Content
======================================== */

.feature-content h3 {
    color: #0f172a;

    font-size: 19px;

    letter-spacing: -0.5px;
}

.feature-content p {
    max-width: 530px;

    margin-top: 8px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.75;
}


/* ========================================
   Responsive
======================================== */

@media (max-width: 900px) {

    .why-section {
        padding: 90px 0;
    }

    .why-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .why-intro {
        position: static;
    }

}


@media (max-width: 600px) {

    .why-section {
        padding: 75px 0;
    }

    .why-intro h2 {
        letter-spacing: -2px;
    }

    .why-feature {
        grid-template-columns: 30px 48px 1fr;

        gap: 13px;

        padding: 25px 0;
    }

    .feature-icon {
        width: 45px;
        height: 45px;

        border-radius: 12px;
    }

    .feature-content h3 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 12px;
    }

}
/* ========================================
   WebNexa — Portfolio Section
======================================== */

.portfolio-section {
    padding: 120px 0;

    background: #ffffff;
}

.portfolio-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ========================================
   Portfolio Heading
======================================== */

.portfolio-heading {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: end;
}

.portfolio-heading h2 {
    max-width: 650px;

    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(40px, 4.5vw, 60px);

    line-height: 1.04;

    letter-spacing: -3px;
}

.portfolio-heading h2 span {
    display: block;

    color: #4f46e5;
}

.portfolio-heading > p {
    max-width: 430px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   Featured Project
======================================== */

.portfolio-featured {
    display: block;

    margin-top: 65px;

    border: 1px solid #e6ebf1;

    border-radius: 24px;

    overflow: hidden;

    background: #ffffff;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.portfolio-featured:hover {
    transform: translateY(-7px);

    border-color: #c7d2fe;

    box-shadow:
        0 25px 65px rgba(15, 23, 42, 0.10);
}


/* ========================================
   Portfolio Image Area
======================================== */

.portfolio-image {
    position: relative;

    overflow: hidden;
}

.featured-image {
    min-height: 470px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 55px;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(79, 70, 229, 0.15),
            transparent 30%
        ),
        #f1f5f9;
}


/* ========================================
   Browser Mockup
======================================== */

.project-browser {
    width: min(760px, 90%);

    border-radius: 18px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 35px 70px rgba(15, 23, 42, 0.14);

    transform: rotate(-2deg);

    transition: transform 0.45s ease;
}

.portfolio-featured:hover .project-browser {
    transform: rotate(0deg) scale(1.015);
}

.browser-bar {
    height: 42px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding-left: 17px;

    border-bottom: 1px solid #edf1f5;

    background: #ffffff;
}

.browser-bar span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}


/* ========================================
   Project Preview
======================================== */

.project-preview {
    min-height: 320px;

    padding: 55px;

    background:
        linear-gradient(
            135deg,
            #eef2ff,
            #ffffff
        );
}

.preview-label {
    color: #6366f1;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.project-preview h3 {
    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(30px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.preview-button {
    display: inline-flex;

    margin-top: 35px;

    padding: 11px 17px;

    border-radius: 10px;

    background: #111827;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;
}


/* ========================================
   Portfolio Info
======================================== */

.portfolio-info {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 27px 30px;
}

.project-category {
    color: #94a3b8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.portfolio-info h3 {
    margin-top: 5px;

    color: #0f172a;

    font-size: 21px;

    letter-spacing: -0.5px;
}

.project-arrow {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    border: 1px solid #e2e8f0;

    border-radius: 50%;

    color: #64748b;

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.portfolio-featured:hover .project-arrow,
.portfolio-project:hover .project-arrow {
    background: #4f46e5;

    border-color: #4f46e5;

    color: #ffffff;

    transform: rotate(8deg);
}


/* ========================================
   Smaller Portfolio Grid
======================================== */

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 18px;
}

.portfolio-project {
    display: block;

    overflow: hidden;

    border: 1px solid #e6ebf1;

    border-radius: 21px;

    background: #ffffff;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.portfolio-project:hover {
    transform: translateY(-6px);

    border-color: #c7d2fe;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.09);
}


/* ========================================
   Smaller Project Visuals
======================================== */

.project-two {
    min-height: 300px;

    padding: 35px;

    display: flex;

    align-items: flex-end;

    background:
        linear-gradient(
            135deg,
            #e2e8f0,
            #f8fafc
        );
}

.project-three {
    min-height: 300px;

    padding: 35px;

    display: flex;

    align-items: flex-end;

    background:
        linear-gradient(
            135deg,
            #e0e7ff,
            #f8fafc
        );
}

.project-ui {
    width: 100%;
}

.project-ui > span {
    color: #64748b;

    font-size: 11px;

    font-weight: 800;
}

.project-ui strong {
    display: block;

    margin-top: 10px;

    color: #4f46e5;

    font-size: 10px;

    letter-spacing: 2px;
}

.project-ui h4 {
    margin-top: 13px;

    color: #0f172a;

    font-size: 30px;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


/* ========================================
   Portfolio Bottom
======================================== */

.portfolio-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #edf1f5;
}

.portfolio-bottom p {
    color: #94a3b8;

    font-size: 13px;
}

.portfolio-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #334155;

    font-size: 13px;

    font-weight: 800;

    transition: color 0.25s ease;
}

.portfolio-bottom a:hover {
    color: #4f46e5;
}


/* ========================================
   Portfolio Responsive
======================================== */

@media (max-width: 850px) {

    .portfolio-section {
        padding: 90px 0;
    }

    .portfolio-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .portfolio-featured {
        margin-top: 45px;
    }

}


@media (max-width: 600px) {

    .portfolio-section {
        padding: 75px 0;
    }

    .portfolio-heading h2 {
        letter-spacing: -2px;
    }

    .featured-image {
        min-height: 330px;

        padding: 25px;
    }

    .project-browser {
        width: 100%;
    }

    .project-preview {
        min-height: 220px;

        padding: 30px;
    }

    .project-preview h3 {
        font-size: 29px;
    }

    .portfolio-info {
        padding: 21px;
    }

    .portfolio-info h3 {
        font-size: 18px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-two,
    .project-three {
        min-height: 250px;

        padding: 25px;
    }

    .project-ui h4 {
        font-size: 27px;
    }

    .portfolio-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}
/* ========================================
   WebNexa — Process Section
======================================== */

.process-section {
    padding: 120px 0;

    background: #f8fafc;

    border-top: 1px solid #edf1f5;
}

.process-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ========================================
   Process Heading
======================================== */

.process-heading {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: end;
}

.process-heading h2 {
    max-width: 600px;

    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(40px, 4.5vw, 60px);

    line-height: 1.04;

    letter-spacing: -3px;
}

.process-heading h2 span {
    display: block;

    color: #4f46e5;
}

.process-heading > p {
    max-width: 430px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   Process Steps
======================================== */

.process-steps {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 70px;

    border-top: 1px solid #dfe5ec;
}

.process-step {
    position: relative;

    padding: 30px 25px 20px;

    border-right: 1px solid #dfe5ec;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.process-step:first-child {
    border-left: 1px solid #dfe5ec;
}

.process-step:hover {
    background: #ffffff;

    transform: translateY(-5px);
}


/* ========================================
   Process Top
======================================== */

.process-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.process-number {
    color: #94a3b8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.process-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #eef2ff;

    color: #4f46e5;

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.process-step:hover .process-icon {
    background: #4f46e5;

    color: #ffffff;

    transform: rotate(-6deg);
}


/* ========================================
   Process Line
======================================== */

.process-line {
    width: 100%;
    height: 1px;

    margin: 27px 0;

    background: #e8edf3;
}


/* ========================================
   Process Content
======================================== */

.process-step h3 {
    color: #0f172a;

    font-size: 20px;

    letter-spacing: -0.6px;
}

.process-step p {
    margin-top: 10px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.8;
}


/* ========================================
   Process CTA
======================================== */

.process-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 55px;

    padding: 27px 30px;

    border: 1px solid #e3e8ef;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.04);
}

.process-cta strong,
.process-cta span {
    display: block;
}

.process-cta strong {
    color: #0f172a;

    font-size: 15px;
}

.process-cta div > span {
    margin-top: 3px;

    color: #94a3b8;

    font-size: 12px;
}

.process-cta a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 0 17px;

    border-radius: 11px;

    background: #111827;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.process-cta a:hover {
    background: #4f46e5;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(79, 70, 229, 0.18);
}

.process-cta a span {
    font-size: 16px;
}


/* ========================================
   Process Responsive
======================================== */

@media (max-width: 900px) {

    .process-section {
        padding: 90px 0;
    }

    .process-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 50px;
    }

    .process-step {
        border-bottom: 1px solid #dfe5ec;
    }

    .process-step:nth-child(2) {
        border-right: 1px solid #dfe5ec;
    }

}


@media (max-width: 600px) {

    .process-section {
        padding: 75px 0;
    }

    .process-heading h2 {
        letter-spacing: -2px;
    }

    .process-steps {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .process-step,
    .process-step:first-child {
        border-left: 1px solid #dfe5ec;
        border-right: 1px solid #dfe5ec;
    }

    .process-step {
        padding: 25px 20px;
    }

    .process-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 23px;
    }

    .process-cta a {
        width: 100%;
    }

}
/* ========================================
   WebNexa — Testimonials Section
======================================== */

.testimonials-section {
    padding: 120px 0;

    background: #ffffff;
}

.testimonials-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ========================================
   Heading
======================================== */

.testimonials-heading {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: end;
}

.testimonials-heading h2 {
    max-width: 600px;

    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(40px, 4.5vw, 60px);

    line-height: 1.04;

    letter-spacing: -3px;
}

.testimonials-heading h2 span {
    display: block;

    color: #4f46e5;
}

.testimonials-heading > p {
    max-width: 430px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   Testimonials Grid
======================================== */

.testimonials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 17px;

    margin-top: 65px;
}


/* ========================================
   Testimonial Card
======================================== */

.testimonial-card {
    min-height: 320px;

    display: flex;

    flex-direction: column;

    padding: 28px;

    border: 1px solid #e5eaf0;

    border-radius: 21px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);

    border-color: #c7d2fe;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);
}


/* ========================================
   Featured Testimonial
======================================== */

.featured-testimonial {
    background: #111827;

    border-color: #111827;
}

.featured-testimonial .testimonial-text {
    color: #d1d5db;
}

.featured-testimonial .testimonial-label {
    color: #a5b4fc;
}

.featured-testimonial .author-avatar {
    background: #312e81;

    color: #c7d2fe;
}

.featured-testimonial .testimonial-author strong {
    color: #ffffff;
}

.featured-testimonial .testimonial-author span {
    color: #9ca3af;
}


/* ========================================
   Testimonial Top
======================================== */

.testimonial-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.quote-mark {
    color: #4f46e5;

    font-size: 42px;

    line-height: 0.7;

    font-family: Georgia, serif;
}

.testimonial-label {
    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


/* ========================================
   Testimonial Text
======================================== */

.testimonial-text {
    flex: 1;

    margin-top: 35px;

    color: #475569;

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   Author
======================================== */

.testimonial-author {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #edf1f5;
}

.featured-testimonial .testimonial-author {
    border-color: #374151;
}

.author-avatar {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #eef2ff;

    color: #4f46e5;

    font-size: 12px;

    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author strong {
    color: #334155;

    font-size: 12px;
}

.testimonial-author span {
    margin-top: 2px;

    color: #94a3b8;

    font-size: 10px;
}


/* ========================================
   Note
======================================== */

.testimonial-note {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 30px;

    color: #94a3b8;

    font-size: 11px;

    text-align: center;
}

.testimonial-note span {
    color: #4f46e5;

    font-size: 15px;
}


/* ========================================
   Responsive
======================================== */

@media (max-width: 900px) {

    .testimonials-section {
        padding: 90px 0;
    }

    .testimonials-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }

}


@media (max-width: 600px) {

    .testimonials-section {
        padding: 75px 0;
    }

    .testimonials-heading h2 {
        letter-spacing: -2px;
    }

    .testimonial-card {
        min-height: 290px;

        padding: 24px;
    }

}
/* ========================================
   WebNexa — FAQ Section
======================================== */

.faq-section {
    padding: 120px 0;

    background: #f8fafc;

    border-top: 1px solid #edf1f5;
}

.faq-container {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}


/* ========================================
   FAQ Intro
======================================== */

.faq-intro {
    position: sticky;

    top: 120px;
}

.faq-intro h2 {
    max-width: 470px;

    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(40px, 4.5vw, 58px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.faq-intro h2 span {
    display: block;

    color: #4f46e5;
}

.faq-intro > p {
    max-width: 400px;

    margin-top: 22px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   FAQ Button
======================================== */

.faq-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 28px;

    min-height: 47px;

    padding: 0 17px;

    border-radius: 11px;

    background: #111827;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.faq-button:hover {
    background: #4f46e5;

    transform: translateY(-2px);
}

.faq-button span {
    font-size: 16px;
}


/* ========================================
   FAQ List
======================================== */

.faq-list {
    border-top: 1px solid #dfe5ec;
}


/* ========================================
   FAQ Item
======================================== */

.faq-item {
    border-bottom: 1px solid #dfe5ec;
}


/* ========================================
   Question
======================================== */

.faq-item summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 25px 4px;

    list-style: none;

    color: #0f172a;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #4f46e5;
}


/* ========================================
   Plus Icon
======================================== */

.faq-item summary b {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 1px solid #dfe5ec;

    border-radius: 50%;

    color: #64748b;

    font-size: 18px;

    font-weight: 400;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.faq-item[open] summary b {
    transform: rotate(45deg);

    background: #4f46e5;

    border-color: #4f46e5;

    color: #ffffff;
}


/* ========================================
   Answer
======================================== */

.faq-answer {
    padding: 0 60px 25px 4px;
}

.faq-answer p {
    max-width: 650px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.85;
}


/* ========================================
   Responsive
======================================== */

@media (max-width: 900px) {

    .faq-section {
        padding: 90px 0;
    }

    .faq-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .faq-intro {
        position: static;
    }

}


@media (max-width: 600px) {

    .faq-section {
        padding: 75px 0;
    }

    .faq-intro h2 {
        letter-spacing: -2px;
    }

    .faq-item summary {
        padding: 21px 2px;

        font-size: 13px;
    }

    .faq-item summary b {
        width: 29px;
        height: 29px;

        font-size: 16px;
    }

    .faq-answer {
        padding:
            0
            40px
            22px
            2px;
    }

    .faq-answer p {
        font-size: 12px;
    }

}
/* ========================================
   WebNexa — Contact Section
======================================== */

.contact-section {
    padding: 120px 0;

    background: #111827;

    overflow: hidden;

    position: relative;
}

.contact-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    border-radius: 50%;

    background: rgba(79, 70, 229, 0.14);

    filter: blur(30px);

    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 92%);
    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: start;
}


/* ========================================
   Contact Intro
======================================== */

.contact-intro {
    padding-top: 15px;
}

.contact-tag {
    color: #a5b4fc;
}

.contact-tag span {
    background: #818cf8;
}

.contact-intro h2 {
    max-width: 550px;

    margin-top: 20px;

    color: #ffffff;

    font-size: clamp(42px, 4.8vw, 63px);

    line-height: 1.03;

    letter-spacing: -3px;
}

.contact-intro h2 span {
    display: block;

    color: #a5b4fc;
}

.contact-intro > p {
    max-width: 470px;

    margin-top: 22px;

    color: #9ca3af;

    font-size: 14px;

    line-height: 1.85;
}


/* ========================================
   Contact Details
======================================== */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 17px;

    margin-top: 42px;
}

.contact-detail {
    display: flex;

    align-items: center;

    gap: 13px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border: 1px solid #374151;

    border-radius: 11px;

    background: #1f2937;

    color: #a5b4fc;

    font-size: 15px;
}

.contact-detail span,
.contact-detail strong {
    display: block;
}

.contact-detail span {
    color: #6b7280;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-detail strong {
    margin-top: 2px;

    color: #e5e7eb;

    font-size: 12px;
}


/* ========================================
   Form Wrapper
======================================== */

.contact-form-wrapper {
    padding: 34px;

    border: 1px solid #374151;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.18);
}


/* ========================================
   Form
======================================== */

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #334155;

    font-size: 11px;

    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dfe5ec;

    border-radius: 11px;

    outline: none;

    background: #f8fafc;

    color: #0f172a;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input,
.form-group select {
    height: 48px;

    padding: 0 14px;
}

.form-group textarea {
    padding: 14px;

    resize: vertical;

    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a1acba;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #818cf8;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.08);
}


/* ========================================
   Submit Button
======================================== */

.contact-submit {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 12px;

    background: #4f46e5;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit:hover {
    background: #4338ca;

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(79, 70, 229, 0.25);
}

.contact-submit span {
    font-size: 17px;
}


/* ========================================
   Form Note
======================================== */

.form-note {
    margin-top: -5px;

    color: #94a3b8;

    font-size: 10px;

    line-height: 1.6;

    text-align: center;
}


/* ========================================
   Contact Responsive
======================================== */

@media (max-width: 900px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-intro {
        padding-top: 0;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 75px 0;
    }

    .contact-intro h2 {
        letter-spacing: -2px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 22px;

        border-radius: 18px;
    }

    .contact-form {
        gap: 17px;
    }

}
/* ========================================
   WebNexa — Footer
======================================== */

.site-footer {
    background: #ffffff;

    border-top: 1px solid #e5eaf0;
}

.footer-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ========================================
   Footer Top
======================================== */

.footer-top {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;

    gap: 60px;

    padding: 75px 0 65px;
}


/* ========================================
   Footer Brand
======================================== */

.footer-logo {
    display: inline-block;

    color: #111827;

    font-size: 26px;

    font-weight: 900;

    letter-spacing: -1.5px;
}

.footer-logo span {
    color: #4f46e5;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 15px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.8;
}


/* ========================================
   Footer CTA
======================================== */

.footer-cta {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    padding: 11px 15px;

    border-radius: 10px;

    background: #111827;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-cta:hover {
    background: #4f46e5;

    transform: translateY(-2px);
}

.footer-cta span {
    font-size: 15px;
}


/* ========================================
   Footer Columns
======================================== */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;

    color: #0f172a;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}

.footer-column a {
    color: #64748b;

    font-size: 12px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: #4f46e5;

    transform: translateX(3px);
}


/* ========================================
   Footer Contact
======================================== */

.footer-contact > a {
    color: #334155;

    font-weight: 700;
}

.footer-contact > span {
    color: #94a3b8;

    font-size: 11px;
}


/* ========================================
   Socials
======================================== */

.footer-socials {
    display: flex;

    gap: 7px;

    margin-top: 9px;
}

.footer-socials a {
    width: 33px;
    height: 33px;

    display: grid;

    place-items: center;

    border: 1px solid #e2e8f0;

    border-radius: 9px;

    color: #64748b;

    font-size: 9px;

    font-weight: 800;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-socials a:hover {
    background: #4f46e5;

    border-color: #4f46e5;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ========================================
   Footer Bottom
======================================== */

.footer-bottom {
    min-height: 75px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    border-top: 1px solid #edf1f5;
}

.footer-bottom p {
    color: #94a3b8;

    font-size: 10px;
}

.footer-bottom-links {
    display: flex;

    gap: 18px;
}

.footer-bottom-links a {
    color: #94a3b8;

    font-size: 10px;

    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #4f46e5;
}

.back-to-top {
    justify-self: end;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #64748b;

    font-size: 10px;

    font-weight: 700;

    transition: color 0.2s ease;
}

.back-to-top:hover {
    color: #4f46e5;
}

.back-to-top span {
    font-size: 15px;
}


/* ========================================
   Footer Responsive
======================================== */

@media (max-width: 900px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 45px;

        padding: 60px 0 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr;

        padding: 20px 0;
    }

    .footer-bottom-links {
        justify-self: end;
    }

    .back-to-top {
        grid-column: 1 / -1;

        justify-self: start;
    }

}


@media (max-width: 600px) {

    .footer-top {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 55px 0 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        gap: 14px;

        padding: 22px 0;
    }

    .footer-bottom-links {
        justify-self: start;
    }

    .back-to-top {
        grid-column: auto;

        justify-self: start;
    }

}
/* ========================================
   WebNexa — Navbar
======================================== */

.navbar {
    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    background: rgba(255, 255, 255, 0.92);

    border-bottom: 1px solid #edf1f5;

    backdrop-filter: blur(16px);
}

.nav-container {
    width: min(1180px, 92%);

    min-height: 76px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* ========================================
   Logo
======================================== */

.nav-logo {
    color: #111827;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: -1.5px;
}

.nav-logo span {
    color: #4f46e5;
}


/* ========================================
   Desktop Links
======================================== */

.nav-links {
    display: flex;

    align-items: center;

    gap: 31px;
}

.nav-links > a {
    position: relative;

    color: #64748b;

    font-size: 12px;

    font-weight: 700;

    transition: color 0.2s ease;
}

.nav-links > a:not(.nav-contact)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: #4f46e5;

    transition: width 0.25s ease;
}

.nav-links > a:hover,
.nav-links > a.active {
    color: #4f46e5;
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
    width: 100%;
}


/* ========================================
   Desktop CTA
======================================== */

.nav-contact {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 41px;

    padding: 0 15px;

    border-radius: 10px;

    background: #111827;

    color: #ffffff !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-contact:hover {
    background: #4f46e5;

    transform: translateY(-2px);
}

.nav-contact span {
    font-size: 15px;
}


/* ========================================
   Mobile Toggle
======================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid #e2e8f0;

    border-radius: 10px;

    background: #ffffff;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    border-radius: 10px;

    background: #111827;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* ========================================
   Mobile Menu
======================================== */

.mobile-menu {
    display: none;

    width: min(1180px, 92%);

    margin: auto;

    padding: 10px 0 22px;
}

.mobile-menu > a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 48px;

    padding: 0 3px;

    border-bottom: 1px solid #edf1f5;

    color: #334155;

    font-size: 14px;

    font-weight: 700;
}

.mobile-menu > a:hover {
    color: #4f46e5;
}


/* ========================================
   Mobile Contact
======================================== */

.mobile-menu .mobile-contact {
    justify-content: center;

    margin-top: 13px;

    border: none;

    border-radius: 10px;

    background: #111827;

    color: #ffffff;

    gap: 8px;
}

.mobile-menu .mobile-contact:hover {
    color: #ffffff;

    background: #4f46e5;
}


/* ========================================
   Menu Open State
======================================== */

.navbar.menu-open .mobile-menu {
    display: block;
}

.navbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ========================================
   Navbar Responsive
======================================== */

@media (max-width: 800px) {

    .nav-container {
        min-height: 68px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}
