/* =====================================================
   CODECRAFT SOLUTIONS
   PREMIUM WEBSITE
===================================================== */

:root {

    --primary: #0866ff;
    --primary-light: #2f86ff;
    --primary-dark: #0047c7;

    --navy: #020817;
    --navy-2: #061225;
    --navy-3: #0a1930;

    --text: #0b172a;
    --text-light: #64748b;

    --white: #ffffff;
    --light: #f6f9ff;

    --border: rgba(148,163,184,.2);

    --radius: 20px;

    --shadow:
        0 20px 60px rgba(2,8,23,.12);

    --transition:
        all .3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

    line-height: 1.6;
}


body[dir="rtl"] {

    font-family: "Cairo", sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


.container {

    width: min(1180px, 92%);

    margin: auto;
}


.section {

    padding: 120px 0;
}


.section-heading {

    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;
}


.section-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading h2 {

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 22px;
}


.section-heading h2 span {

    color: var(--primary);
}


.section-heading p {

    color: var(--text-light);

    font-size: 17px;
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition: var(--transition);

    background: rgba(2,8,23,.75);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255,255,255,.06);
}


.header.scrolled {

    background: rgba(2,8,23,.95);

    box-shadow: 0 10px 40px rgba(0,0,0,.2);
}


.nav-container {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 220px;
    height: auto;
    display: block;
}


.logo-icon {

    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(135deg,#1680ff,#0051d9);

    box-shadow:
        0 10px 30px rgba(8,102,255,.3);
}


.logo-icon span {

    font-size: 18px;

    font-weight: 800;
}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.logo-text strong {

    font-size: 21px;

    letter-spacing: -.8px;
}


.logo-text strong span {

    color: #1680ff;
}


.logo-text small {

    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 4px;

    opacity: .7;

    text-align: center;
}


.nav {

    display: flex;

    align-items: center;

    gap: 27px;

    color: #cbd5e1;

    font-size: 14px;

    font-weight: 500;
}


.nav a {

    transition: var(--transition);
}


.nav a:hover {

    color: white;
}


.nav-cta {

    padding: 11px 17px;

    border-radius: 10px;

    color: white !important;

    background: var(--primary);

    box-shadow:
        0 8px 25px rgba(8,102,255,.25);
}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 15px;
}


.language-switcher {
    position: relative;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 14px 18px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;

    background: #0d1b2f;
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.language-button:hover {
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}


.language-menu {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 180px;

    padding: 8px;

    background: #0d1b2f;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: all 0.25s ease;

    z-index: 9999;
}


.language-menu.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.language-menu button {
    width: 100%;

    padding: 12px 14px;

    border: none;

    border-radius: 9px;

    background: transparent;

    color: #fff;

    text-align: left;

    font-size: 15px;

    cursor: pointer;

    transition: 0.2s ease;
}


.language-menu button:hover {
    background: rgba(255,255,255,0.08);
}


.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    color: white;

    font-size: 25px;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    position: relative;

    overflow: hidden;

    background: var(--navy);

    color: white;

    padding-top: 82px;
}


.hero-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}


.grid-background {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}


.glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .18;
}


.glow-one {

    background: #0066ff;

    top: -250px;

    right: 5%;
}


.glow-two {

    background: #00a2ff;

    bottom: -300px;

    left: -100px;
}


.hero-container {

    min-height: calc(100vh - 82px);

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    padding-top: 70px;

    padding-bottom: 80px;
}


.hero-content {

    position: relative;

    z-index: 2;
}


.badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border-radius: 50px;

    background: rgba(8,102,255,.1);

    border: 1px solid rgba(8,102,255,.3);

    color: #7db3ff;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 25px;
}


.pulse {

    width: 7px;
    height: 7px;

    background: #36a2ff;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(54,162,255,.1);
}


.hero h1 {

    font-size: clamp(45px, 5.2vw, 72px);

    line-height: 1.03;

    letter-spacing: -3px;

    max-width: 700px;

    margin-bottom: 27px;
}


.hero h1 span {

    color: #2582ff;
}


.hero-content > p {

    color: #94a3b8;

    font-size: 18px;

    max-width: 600px;

    margin-bottom: 35px;
}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 45px;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 11px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}


.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            #1477ff,
            #0054df
        );

    box-shadow:
        0 15px 35px rgba(8,102,255,.25);
}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(8,102,255,.4);
}


.btn-secondary {

    color: white;

    background: rgba(255,255,255,.04);

    border-color: rgba(255,255,255,.12);
}


.btn-secondary:hover {

    background: rgba(255,255,255,.08);

    transform: translateY(-3px);
}


.hero-trust {

    display: flex;

    align-items: center;

    gap: 22px;

    color: #94a3b8;
}


.trust-item {

    display: flex;

    flex-direction: column;
}


.trust-item strong {

    color: white;

    font-size: 16px;
}


.trust-item span {

    font-size: 11px;
}


.trust-line {

    width: 1px;

    height: 35px;

    background: rgba(255,255,255,.12);
}


/* =====================================================
   HERO DASHBOARD
===================================================== */

.hero-visual {

    position: relative;

    min-height: 500px;

    display: grid;

    place-items: center;
}


.dashboard {

    width: min(570px,100%);

    background:
        linear-gradient(
            145deg,
            #0c1b32,
            #020b19
        );

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 18px;

    box-shadow:
        0 50px 100px rgba(0,0,0,.5);

    overflow: hidden;

    transform:
        perspective(1200px)
        rotateY(-6deg)
        rotateX(3deg);

    animation: floating 6s ease-in-out infinite;
}


@keyframes floating {

    0%,100% {
        transform:
            perspective(1200px)
            rotateY(-6deg)
            rotateX(3deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1200px)
            rotateY(-6deg)
            rotateX(3deg)
            translateY(-15px);
    }
}


.dashboard-header {

    height: 48px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 18px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: #64748b;

    font-size: 11px;
}


.window-buttons {

    display: flex;

    gap: 5px;
}


.window-buttons i {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #334155;
}


.dashboard-body {

    display: flex;

    min-height: 350px;
}


.dashboard-sidebar {

    width: 130px;

    padding: 25px 10px;

    border-right: 1px solid rgba(255,255,255,.06);

    color: #64748b;

    font-size: 10px;
}


.dashboard-sidebar div {

    display: flex;

    gap: 9px;

    padding: 11px 10px;

    border-radius: 7px;

    margin-bottom: 5px;
}


.dashboard-sidebar .sidebar-active {

    background: rgba(8,102,255,.15);

    color: #4d9aff;
}


.dashboard-content {

    flex: 1;

    padding: 25px;
}


.dashboard-content h3 {

    margin-bottom: 20px;

    font-size: 16px;
}


.stats {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 10px;
}


.stat {

    padding: 13px;

    border-radius: 9px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.06);
}


.stat small {

    display: block;

    color: #64748b;

    font-size: 8px;

    margin-bottom: 4px;
}


.stat strong {

    display: block;

    font-size: 16px;
}


.stat span {

    color: #20c77a;

    font-size: 8px;
}


.chart-card {

    margin-top: 15px;

    padding: 18px;

    height: 190px;

    border-radius: 10px;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.06);
}


.chart-title {

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    color: #64748b;
}


.chart-title strong {

    color: #20c77a;
}


.chart {

    height: 130px;

    position: relative;

    margin-top: 15px;

    overflow: hidden;
}


.chart::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,.05),
            rgba(255,255,255,.05) 1px,
            transparent 1px,
            transparent 32px
        );
}


.chart-line {

    position: absolute;

    left: 0;
    right: 0;

    top: 65px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #1677ff 10%,
            #28a4ff 50%,
            #1677ff
        );

    transform:
        skewY(-10deg);

    box-shadow:
        0 0 20px rgba(8,102,255,.8);
}


.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    background:
        rgba(10,25,48,.9);

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

    backdrop-filter: blur(10px);

    z-index: 3;

    animation: cardFloat 5s ease-in-out infinite;
}


.card-top {

    top: 50px;

    right: -10px;
}


.card-bottom {

    bottom: 55px;

    left: -20px;

    animation-delay: -2s;
}


@keyframes cardFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.mini-icon,
.check-icon {

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: rgba(8,102,255,.15);

    color: #3190ff;
}


.check-icon {

    color: #1fd285;

    background: rgba(31,210,133,.1);
}


.floating-card strong {

    display: block;

    font-size: 11px;

    color: white;
}


.floating-card small {

    display: block;

    color: #64748b;

    font-size: 9px;
}


/* =====================================================
   SERVICES
===================================================== */

.services {

    background: var(--light);
}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}


.service-card {

    position: relative;

    padding: 38px;

    background: white;

    border: 1px solid #e8eef7;

    border-radius: var(--radius);

    transition: var(--transition);

    overflow: hidden;
}


.service-card::before {

    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -80px;
    top: -80px;

    background: var(--primary);

    border-radius: 50%;

    opacity: .04;
}


.service-card:hover {

    transform: translateY(-10px);

    border-color: rgba(8,102,255,.3);

    box-shadow: var(--shadow);
}


.service-card.featured {

    background:
        linear-gradient(
            145deg,
            #071a36,
            #020817
        );

    color: white;

    border-color: transparent;

    box-shadow:
        0 30px 70px rgba(2,8,23,.2);
}


.service-number {

    position: absolute;

    right: 28px;
    top: 25px;

    color: #cbd5e1;

    font-size: 12px;

    font-weight: 800;
}


.featured .service-number {

    color: #315279;
}


.service-icon {

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 15px;

    background: rgba(8,102,255,.1);

    color: var(--primary);

    font-size: 26px;
}


.service-card h3 {

    font-size: 24px;

    margin-bottom: 15px;
}


.service-card p {

    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 25px;
}


.featured p {

    color: #94a3b8;
}


.service-card ul {

    list-style: none;

    margin-bottom: 25px;
}


.service-card li {

    position: relative;

    padding-left: 21px;

    margin: 9px 0;

    color: #475569;

    font-size: 13px;
}


.featured li {

    color: #cbd5e1;
}


.service-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--primary);

    font-weight: 800;
}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;
}


/* =====================================================
   ABOUT
===================================================== */

.about-container {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


.about-visual {

    position: relative;

    padding: 25px;
}


.about-box {

    border-radius: 20px;

    overflow: hidden;

    background: #020817;

    box-shadow:
        0 40px 80px rgba(2,8,23,.2);
}


.code-header {

    display: flex;

    justify-content: space-between;

    padding: 16px 20px;

    border-bottom: 1px solid rgba(255,255,255,.07);

    color: #64748b;

    font-size: 11px;
}


pre {

    padding: 35px;

    overflow: auto;
}


code {

    color: #94a3b8;

    font-family: monospace;

    font-size: 13px;

    line-height: 2;
}


.purple {
    color: #c084fc;
}


.green {
    color: #4ade80;
}


.blue {
    color: #38bdf8;
}


.experience-badge {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 130px;

    height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: var(--primary);

    color: white;

    box-shadow:
        0 25px 50px rgba(8,102,255,.35);
}


.experience-badge strong {

    font-size: 40px;

    line-height: 1;
}


.experience-badge span {

    margin-top: 5px;

    font-size: 11px;

    text-align: center;
}


.about-content h2 {

    font-size: clamp(35px,4vw,54px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.about-content h2 span {

    color: var(--primary);
}


.about-content > p {

    color: var(--text-light);

    margin-bottom: 30px;
}


.features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.feature {

    display: flex;

    gap: 12px;
}


.feature-icon {

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background: rgba(8,102,255,.1);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}


.feature h4 {

    font-size: 14px;

    margin-bottom: 3px;
}


.feature p {

    color: var(--text-light);

    font-size: 12px;
}


/* =====================================================
   PROJECTS
===================================================== */

.projects {

    background: var(--light);
}


.projects-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;
}


.project-card {

    overflow: hidden;

    background: white;

    border-radius: var(--radius);

    border: 1px solid #e7edf6;

    transition: var(--transition);
}


.project-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);
}


.project-image {

    height: 250px;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;
}


.project-web {

    background:
        linear-gradient(
            135deg,
            #06142c,
            #0c3b78
        );
}


.project-desktop {

    background:
        linear-gradient(
            135deg,
            #0a1930,
            #102c4d
        );
}


.project-custom {

    background:
        radial-gradient(
            circle at center,
            #0c62d8,
            #031127 65%
        );
}


.project-window {

    width: 78%;

    background: #061226;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.15);

    padding: 12px;

    box-shadow: 0 20px 50px rgba(0,0,0,.4);

    transform:
        perspective(700px)
        rotateX(10deg);
}


.project-window-header {

    display: flex;

    justify-content: space-between;

    color: #94a3b8;

    font-size: 8px;

    margin-bottom: 12px;
}


.project-bars {

    display: flex;

    gap: 6px;

    margin-bottom: 15px;
}


.project-bars div {

    flex: 1;

    height: 35px;

    border-radius: 5px;

    background:
        rgba(8,102,255,.25);
}


.project-chart {

    height: 80px;

    border-radius: 5px;

    background:
        linear-gradient(
            160deg,
            transparent 40%,
            rgba(8,102,255,.7) 41%,
            transparent 43%
        ),
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,.04),
            rgba(255,255,255,.04) 1px,
            transparent 1px,
            transparent 20px
        );
}


.desktop-window {

    width: 75%;
    height: 150px;

    display: flex;

    background: #071527;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 9px;

    box-shadow: 0 25px 50px rgba(0,0,0,.4);
}


.desktop-sidebar {

    width: 25%;

    background: #0b213d;

    border-right: 1px solid rgba(255,255,255,.08);
}


.desktop-main {

    flex: 1;

    padding: 15px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;
}


.desktop-main div {

    border-radius: 5px;

    background: rgba(8,102,255,.15);

    border: 1px solid rgba(8,102,255,.15);
}


.api-circle {

    width: 100px;
    height: 100px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.2);

    background: rgba(255,255,255,.05);

    color: white;

    font-size: 25px;

    box-shadow:
        0 0 50px rgba(8,102,255,.5);
}


.api-lines {

    position: absolute;

    bottom: 30px;

    display: flex;

    gap: 8px;
}


.api-lines i {

    display: block;

    width: 35px;
    height: 4px;

    border-radius: 5px;

    background: rgba(255,255,255,.3);
}


.project-info {

    padding: 27px;
}


.project-tag {

    font-size: 9px;

    color: var(--primary);

    font-weight: 800;

    letter-spacing: 1px;
}


.project-info h3 {

    margin: 8px 0;

    font-size: 20px;
}


.project-info p {

    color: var(--text-light);

    font-size: 13px;
}


/* =====================================================
   PROCESS
===================================================== */

.process-grid {

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 15px;
}


.process-step {

    text-align: center;
}


.process-number {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 15px;
}


.process-icon {

    width: 70px;
    height: 70px;

    margin: auto auto 18px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    background: var(--light);

    border: 1px solid #e6edf7;

    font-size: 25px;
}


.process-step h3 {

    margin-bottom: 7px;

    font-size: 17px;
}


.process-step p {

    color: var(--text-light);

    font-size: 12px;
}


.process-line {

    height: 1px;

    width: 40px;

    background: #dce5f1;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding: 20px 0 120px;
}


.cta-box {

    position: relative;

    overflow: hidden;

    min-height: 400px;

    display: grid;

    place-items: center;

    text-align: center;

    padding: 60px 30px;

    border-radius: 30px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #061a38,
            #020817
        );

    border: 1px solid rgba(8,102,255,.3);
}


.cta-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    background: #0066ff;

    opacity: .15;

    filter: blur(100px);

    border-radius: 50%;
}


.cta-content {

    position: relative;

    max-width: 750px;
}


.cta-content h2 {

    font-size: clamp(38px,5vw,62px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.cta-content h2 span {

    color: #2582ff;
}


.cta-content p {

    color: #94a3b8;

    margin-bottom: 30px;
}


/* =====================================================
   FAQ
===================================================== */

.faq {

    background: var(--light);
}


.faq-container {

    max-width: 850px;

    margin: auto;
}


.faq-item {

    background: white;

    border: 1px solid #e5ebf3;

    border-radius: 13px;

    margin-bottom: 10px;

    overflow: hidden;
}


.faq-question {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

    border: 0;

    background: white;

    color: var(--text);

    text-align: left;

    font-size: 14px;

    font-weight: 700;
}


.faq-question span:last-child {

    font-size: 20px;

    color: var(--primary);

    transition: var(--transition);
}


.faq-item.active
.faq-question span:last-child {

    transform: rotate(45deg);
}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease;
}


.faq-answer p {

    padding: 0 20px 20px;

    color: var(--text-light);

    font-size: 13px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    background: white;
}


.contact-container {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: start;
}


.contact-info h2 {

    font-size: clamp(38px,4.5vw,58px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.contact-info h2 span {

    color: var(--primary);
}


.contact-info > p {

    color: var(--text-light);

    margin-bottom: 35px;
}


.contact-details {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 30px;
}


.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 12px 0;
}


.contact-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: rgba(8,102,255,.08);

    color: var(--primary);
}


.contact-item small {

    display: block;

    color: #94a3b8;

    font-size: 10px;
}


.contact-item strong {

    display: block;

    font-size: 14px;
}


.whatsapp-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 18px;

    border-radius: 10px;

    background: #0a8f55;

    color: white;

    font-size: 13px;

    font-weight: 700;
}


.contact-form-wrapper {

    padding: 35px;

    border-radius: 22px;

    background: var(--light);

    border: 1px solid #e4ebf4;
}


.form-header {

    margin-bottom: 25px;
}


.form-header h3 {

    font-size: 25px;

    margin-bottom: 5px;
}


.form-header p {

    color: var(--text-light);

    font-size: 13px;
}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.form-group {

    margin-bottom: 16px;
}


.form-group label {

    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 700;
}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid #dbe4ef;

    border-radius: 9px;

    background: white;

    outline: none;

    padding: 13px;

    font-size: 13px;

    transition: var(--transition);
}


.form-group textarea {

    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(8,102,255,.08);
}


.form-submit {

    width: 100%;

    border: 0;
}


.form-message {

    margin-top: 12px;

    font-size: 12px;

    text-align: center;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 70px 0 20px;

    background: var(--navy);

    color: white;
}


.footer-top {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


.footer-brand p {

    max-width: 300px;

    margin-top: 20px;

    color: #64748b;

    font-size: 13px;
}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 11px;
}


.footer-column h4 {

    margin-bottom: 10px;

    font-size: 13px;
}


.footer-column a,
.footer-column span {

    color: #64748b;

    font-size: 12px;

    transition: var(--transition);
}


.footer-column a:hover {

    color: white;
}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 20px;

    color: #475569;

    font-size: 11px;
}


.footer-social {

    display: flex;

    gap: 8px;
}


.footer-social a {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background: rgba(255,255,255,.05);

    color: white;
}


/* =====================================================
   RTL
===================================================== */

body[dir="rtl"] {

    text-align: right;
}


body[dir="rtl"] .nav,
body[dir="rtl"] .hero-buttons,
body[dir="rtl"] .hero-trust {

    direction: rtl;
}


body[dir="rtl"] .language-menu {

    right: auto;

    left: 0;
}


body[dir="rtl"] .service-card li {

    padding-left: 0;

    padding-right: 21px;
}


body[dir="rtl"] .service-card li::before {

    left: auto;

    right: 0;
}


body[dir="rtl"] .feature {

    text-align: right;
}


body[dir="rtl"] .contact-item {

    text-align: right;
}


body[dir="rtl"] .faq-question {

    text-align: right;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .nav {

        position: fixed;

        top: 82px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 25px;

        background: #020817;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }


    .nav.active {

        display: flex;
    }


    .menu-toggle {

        display: block;
    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .hero-content > p {

        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons,
    .hero-trust {

        justify-content: center;
    }


    .hero-visual {

        max-width: 650px;

        width: 100%;

        margin: auto;
    }


    .services-grid,
    .projects-grid {

        grid-template-columns: 1fr 1fr;
    }


    .about-container,
    .contact-container {

        grid-template-columns: 1fr;
    }


    .about-visual {

        max-width: 650px;

        margin: auto;
    }


    .process-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 35px;
    }


    .process-line {

        display: none;
    }


    .footer-top {

        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 650px) {

    .section {

        padding: 80px 0;
    }


    .hero {

        min-height: auto;
    }


    .hero-container {

        padding-top: 80px;
    }


    .hero h1 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .hero-content > p {

        font-size: 15px;
    }


    .hero-buttons {

        flex-direction: column;
    }


    .hero-buttons .btn {

        width: 100%;
    }


    .hero-trust {

        gap: 13px;
    }


    .dashboard {

        transform: none;
    }


    .floating-card {

        display: none;
    }


    .services-grid,
    .projects-grid,
    .features {

        grid-template-columns: 1fr;
    }


    .service-card {

        padding: 30px;
    }


    .about-container,
    .contact-container {

        gap: 45px;
    }


    .experience-badge {

        width: 100px;
        height: 100px;
    }


    .experience-badge strong {

        font-size: 30px;
    }


    .process-grid {

        grid-template-columns: 1fr;
    }


    .form-row {

        grid-template-columns: 1fr;
    }


    .contact-form-wrapper {

        padding: 25px;
    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom {

        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 82px;

    z-index: 9999;

    background: rgba(3, 12, 28, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}


.header-container {

    max-width: 1250px;

    height: 100%;

    margin: auto;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.site-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}


.site-logo img {

    width: 190px;

    height: auto;

    display: block;

    transition: transform 0.3s ease;
}


.site-logo:hover img {

    transform: scale(1.03);
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    margin-left: auto;
}


.main-nav > a {

    position: relative;

    color: #d9e4f2;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    padding: 8px 0;

    transition: color 0.25s ease;
}


.main-nav > a:not(.header-cta)::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 2px;

    background: #1677ff;

    border-radius: 10px;

    transition: width 0.25s ease;
}


.main-nav > a:not(.header-cta):hover {

    color: #ffffff;
}


.main-nav > a:not(.header-cta):hover::after {

    width: 100%;
}


/* =========================================
   CTA
========================================= */

.header-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11px 18px !important;

    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #1268e8,
        #1b82ff
    );

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(18, 104, 232, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.header-cta:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(18, 104, 232, 0.38);
}


/* =========================================
   HEADER ACTIONS
========================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================
   LANGUAGE
========================================= */

.language-switcher {

    position: relative;
}


.language-button {

    height: 44px;

    min-width: 68px;

    padding: 0 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color: #ffffff;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 12px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}


.language-button:hover {

    background: rgba(255,255,255,0.08);

    border-color: rgba(255,255,255,0.25);
}


.language-arrow {

    font-size: 16px;

    opacity: 0.8;

    transition: transform 0.25s ease;
}


.language-menu {

    position: absolute;

    top: calc(100% + 10px);

    right: 0;

    width: 180px;

    padding: 7px;

    background: #0a172b;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-8px);

    transition: all 0.25s ease;
}


.language-menu.active {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.language-menu button {

    width: 100%;

    border: none;

    background: transparent;

    color: #dce7f5;

    text-align: left;

    padding: 11px 12px;

    border-radius: 8px;

    font-size: 14px;

    cursor: pointer;

    transition: background 0.2s ease;
}


.language-menu button:hover {

    background: rgba(255,255,255,0.08);

    color: #ffffff;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {

    display: none;

    width: 44px;

    height: 44px;

    padding: 9px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 11px;

    background: rgba(255,255,255,0.04);

    cursor: pointer;
}


.mobile-menu-button span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    background: #ffffff;

    border-radius: 5px;

    transition: all 0.25s ease;
}
/* =========================================
   FOOTER
========================================= */

.site-footer {

    background: #030c1c;

    color: #ffffff;

    border-top: 1px solid rgba(255,255,255,0.08);

    margin-top: 0;
}


.footer-container {

    max-width: 1250px;

    margin: auto;

    padding: 70px 25px 55px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.4fr;

    gap: 60px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {

    max-width: 360px;
}


.footer-logo {

    display: inline-block;

    margin-bottom: 20px;
}


.footer-logo img {

    width: 205px;

    height: auto;

    display: block;
}


.footer-brand p {

    color: #91a2b8;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}


.footer-column h3 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}


.footer-column a,
.footer-column > span {

    color: #91a2b8;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.6;

    transition: color 0.25s ease;
}


.footer-column a:hover {

    color: #3d91ff;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact a,
.footer-contact > span {

    display: flex;

    align-items: flex-start;

    gap: 9px;
}


.footer-contact a span,
.footer-contact > span > span {

    color: #2580ff;

    min-width: 17px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-bottom-container {

    max-width: 1250px;

    margin: auto;

    padding: 22px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {

    margin: 0;

    color: #718399;

    font-size: 13px;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-social a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 10px;

    transition: all 0.25s ease;
}


.footer-social a:hover {

    background: #1268e8;

    border-color: #1268e8;

    transform: translateY(-2px);
}
/* =========================================
   RESPONSIVE HEADER
========================================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 18px;
    }

    .main-nav > a {

        font-size: 13px;
    }

    .site-logo img {

        width: 165px;
    }

}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 900px) {

    .site-header {

        height: 74px;
    }


    .header-container {

        padding: 0 18px;
    }


    .site-logo img {

        width: 165px;
    }


    .mobile-menu-button {

        display: block;
    }


    .main-nav {

        position: absolute;

        top: calc(100% + 1px);

        left: 15px;

        right: 15px;

        padding: 18px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        background: #071326;

        border: 1px solid rgba(255,255,255,0.09);

        border-radius: 15px;

        box-shadow:
            0 20px 50px rgba(0,0,0,0.35);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: all 0.25s ease;
    }


    .main-nav.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .main-nav > a {

        width: 100%;

        padding: 13px 12px;

        border-radius: 8px;
    }


    .main-nav > a:hover {

        background: rgba(255,255,255,0.05);
    }


    .main-nav > a:not(.header-cta)::after {

        display: none;
    }


    .header-cta {

        margin-top: 7px;

        text-align: center;
    }

}


/* =========================================
   FOOTER MOBILE
========================================= */

@media (max-width: 800px) {

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 45px 30px;

        padding: 55px 22px 45px;
    }


    .footer-brand {

        grid-column: 1 / -1;

        max-width: 500px;
    }

}


@media (max-width: 550px) {

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 20px 35px;
    }


    .footer-brand {

        grid-column: auto;
    }


    .footer-bottom-container {

        padding: 20px;

        flex-direction: column;

        text-align: center;
    }


    .site-logo img {

        width: 150px;
    }


    .language-button {

        min-width: 60px;

        height: 42px;
    }

}