:root {
    --bg: #05060f;
    --panel: #0c1024;
    --muted: #9aa1c4;
    --text: #e7e9ff;
    --accent-start: #00c6ff;
    --accent-end: #8a2eff;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --glow: rgba(138, 46, 255, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 15% 20%, rgba(0, 198, 255, 0.08), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(138, 46, 255, 0.1), transparent 40%),
                var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

h1, h2, h3 {
    margin: 0;
}

p {
    color: var(--muted);
    margin: 12px 0 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 6, 15, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
}

.brand-name {
    display: block;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
}

.brand-tag {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
}

nav a:hover {
    color: var(--text);
    background: var(--card);
}

.btn-outline {
    border: 1px solid var(--border);
    background: var(--card);
}

.section {
    padding: 120px 7% 40px;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
    padding: 140px 7% 90px;
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 1.1;
    margin-top: 12px;
}

.hero p {
    font-size: 1.05rem;
    max-width: 650px;
}

.pill, .section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 198, 255, 0.12), rgba(138, 46, 255, 0.18));
    color: #b7c5ff;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 22px 0 10px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent-start), var(--accent-end));
    color: #0a0b15;
    box-shadow: 0 15px 45px rgba(138, 46, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(138, 46, 255, 0.3);
}

.btn-ghost {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-card {
    background: linear-gradient(140deg, rgba(0, 198, 255, 0.08), rgba(138, 46, 255, 0.08)), var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.card-header {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent-start), var(--accent-end));
    opacity: 0.8;
}

.card-body {
    padding: 22px;
}

.card-subtitle {
    color: #b4c4ff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin: 0 0 8px;
}

.card-list {
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.card-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.text-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-top: 12px;
}

.service-grid,
.portfolio-grid,
.testimonial-grid {
    display: grid;
    gap: 20px;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(138, 46, 255, 0.12), transparent 40%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

.icon {
    font-size: 1.4rem;
    background: linear-gradient(120deg, rgba(0, 198, 255, 0.25), rgba(138, 46, 255, 0.35));
    padding: 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 14px;
}

.portfolio {
    padding-top: 80px;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.case-card {
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.case-img {
    height: 190px;
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}

.gradient-1 { background: linear-gradient(120deg, #00c6ff, #8a2eff, #00c6ff); }
.gradient-2 { background: linear-gradient(120deg, #32f5c8, #5a65ff, #c17bff); }
.gradient-3 { background: linear-gradient(120deg, #ffb347, #7f5fff, #00c6ff); }

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.case-content {
    padding: 20px;
}

.tag {
    display: inline-block;
    margin-right: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #cdd6ff;
    font-size: 0.82rem;
}

.process {
    padding-top: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 18px 22px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(120deg, var(--accent-start), var(--accent-end));
    color: #0a0b15;
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonials {
    padding-top: 80px;
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
    margin: 0;
    padding: 22px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial footer {
    margin-top: 14px;
    color: #c4ccff;
    font-weight: 700;
}

.cta {
    padding-top: 80px;
    padding-bottom: 120px;
}

.cta-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: center;
    background: linear-gradient(120deg, rgba(0, 198, 255, 0.12), rgba(138, 46, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.cta-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.form-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d7d7ff;
    min-height: 1.2em;
    transition: color 0.2s ease;
}

.form-status.sending { color: #d7d7ff; }
.form-status.success { color: #66e3a4; }
.form-status.error { color: #ff8ba7; }

.status-link {
    color: #c1d4ff;
    text-decoration: underline;
    font-weight: 700;
}

label {
    color: #c9d2ff;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text);
    font-size: 1rem;
    resize: vertical;
}

textarea { min-height: 120px; }

.footer {
    border-top: 1px solid var(--border);
    padding: 30px 7% 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 640px) {
    nav { display: none; }
    .navbar { padding: 16px 6%; }
    .hero { padding-top: 120px; }
    .section { padding-top: 100px; }
}

.marka-image {
  width: 100%;                    /* Fills the container width */
  height: 200px;                  /* Set height or use aspect-ratio */
  background-image: url('images/Markastore.png');
  background-size: cover;         /* Cover full area */
  background-position: center;    /* Center the image */
  border-radius: 10px;
}

.element6-image {
  width: 100%;                    /* Fills the container width */
  height: 200px;                  /* Set height or use aspect-ratio */
  background-image: url('images/Element6.png');
  background-size: cover;         /* Cover full area */
  background-position: center;    /* Center the image */
  border-radius: 10px;
}
.greatgift-image {
  width: 100%;                    /* Fills the container width */
  height: 200px;                  /* Set height or use aspect-ratio */
  background-image: url('images/GreatGift.png');
  background-size: cover;         /* Cover full area */
  background-position: center;    /* Center the image */
  border-radius: 10px;
}
.OEG-image {
  width: 100%;                    /* Fills the container width */
  height: 200px;                  /* Set height or use aspect-ratio */
  background-image: url('images/OEG.png');
  background-size: cover;         /* Cover full area */
  background-position: center;    /* Center the image */
  border-radius: 10px;
}
nav a.active {
  border: 2px solid white;           /* or your outline color */
  padding: 8px 14px;
  border-radius: 6px;                 /* match your button style */
}
