﻿

@font-face {
    font-family: 'BKoodakBold';
    src: url('../fonts/BKoodakBold.svg') format('svg');
    src: url('../fonts/BKoodakBold.ttf') format('truetype');
    src: url('../fonts/glyphicons-halflings-regular.svg') format('svg');

}

body, a, div, span, ul, li, h1, h2, h3, h4, h5 {
    font-family: "BKoodakBold", Tahoma, sans-serif;
}

:root {
    --dev-bg: #0b1120;
    --dev-bg-soft: #111827;
    --dev-surface: rgba(15, 23, 42, 0.78);
    --dev-surface-strong: #162033;
    --dev-card: rgba(17, 24, 39, 0.92);
    --dev-border: rgba(148, 163, 184, 0.16);
    --dev-text: #e5eefb;
    --dev-text-muted: #94a3b8;
    --dev-primary: #38bdf8;
    --dev-primary-strong: #0ea5e9;
    --dev-accent: #22c55e;
    --dev-accent-strong: #16a34a;
    --dev-warning: #f59e0b;
    --dev-shadow: 0 20px 60px rgba(2, 8, 23, 0.45);
    --dev-radius: 20px;
}

body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 22%), radial-gradient(circle at top left, rgba(34, 197, 94, 0.10), transparent 18%), linear-gradient(180deg, #0b1120 0%, #0f172a 45%, #0b1120 100%);
    color: var(--dev-text);
    line-height: 1.8;
}

a {
    color: var(--dev-primary);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

    a:hover {
        color: #7dd3fc;
    }

header .navbar {
    background: rgba(11, 17, 32, 0.78) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--dev-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #f8fafc !important;
}

.nav-link {
    color: var(--dev-text-muted) !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--dev-primary) !important;
        transform: translateY(-1px);
    }

.form-control {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--dev-border);
    color: var(--dev-text);
    border-radius: 12px;
}

    .form-control:focus {
        background: rgba(15, 23, 42, 1);
        color: var(--dev-text);
        border-color: rgba(56, 189, 248, 0.55);
        box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.12);
    }

    .form-control::placeholder {
        color: #64748b;
    }

.btn {
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.22s ease;
}

.btn-primary,
.btn-outline-success:hover {
    background: linear-gradient(135deg, var(--dev-primary), var(--dev-primary-strong));
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.22);
}

    .btn-primary:hover,
    .btn-outline-success:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
    }

.btn-outline-success {
    color: var(--dev-accent);
    border-color: rgba(34, 197, 94, 0.45);
}

.btn-secondary {
    background: rgba(148, 163, 184, 0.10);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--dev-text);
}

    .btn-secondary:hover {
        background: rgba(56, 189, 248, 0.12);
        border-color: rgba(56, 189, 248, 0.35);
        color: #fff;
        transform: translateY(-2px);
    }

#myCarousel {
    margin-top: 60px;
}

.carousel {
    border-bottom: 1px solid var(--dev-border);
}

.carousel-item {
    height: 88vh;
    min-height: 560px;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.80), rgba(15, 23, 42, 0.55)), radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.15), transparent 25%), radial-gradient(circle at 80% 30%, rgba(34, 197, 94, 0.12), transparent 22%);
}

    .carousel-item svg {
        display: none;
    }

.carousel-caption {
    bottom: 18%;
    background: rgba(15, 23, 42, 0.52);
    border: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    max-width: 720px;
    box-shadow: var(--dev-shadow);
}

    .carousel-caption h1 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: 900;
        color: #f8fafc;
        margin-bottom: 1rem;
    }

    .carousel-caption p {
        color: #cbd5e1;
        font-size: 1.05rem;
    }

.carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background-color: rgba(148, 163, 184, 0.45);
}

.carousel-indicators .active {
    background-color: var(--dev-primary);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

.marketing {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

    .marketing .col-lg-4,
    .featurette {
        background: var(--dev-card);
        border: 1px solid var(--dev-border);
        border-radius: var(--dev-radius);
        box-shadow: var(--dev-shadow);
    }

    .marketing .col-lg-4 {
        padding: 2rem 1.5rem;
        text-align: center;
        transition: transform 0.25s ease, border-color 0.25s ease;
    }

        .marketing .col-lg-4:hover {
            transform: translateY(-6px);
            border-color: rgba(56, 189, 248, 0.28);
        }

    .marketing .row {
        gap: 1.5rem 0;
    }

    .marketing h2,
    .featurette-heading {
        color: #f8fafc;
        font-weight: 800;
    }

    .marketing p,
    .lead {
        color: var(--dev-text-muted);
    }

.rounded-circle,
.featurette-image {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(34, 197, 94, 0.14)), #0f172a !important;
    border: 1px solid rgba(56, 189, 248, 0.18);
}

.featurette {
    padding: 2rem;
    margin: 0;
    align-items: center;
}

.featurette-divider {
    margin: 2rem 0;
    border-color: rgba(148, 163, 184, 0.12);
    opacity: 1;
}

.text-body-secondary {
    color: var(--dev-primary) !important;
}

footer.container {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--dev-border);
    color: var(--dev-text-muted);
}

footer a {
    color: var(--dev-primary);
}

.bd-mode-toggle .btn {
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid var(--dev-border);
    color: var(--dev-text);
}

.dropdown-menu {
    background: #0f172a;
    border: 1px solid var(--dev-border);
    border-radius: 16px;
    box-shadow: var(--dev-shadow);
}

.dropdown-item {
    color: var(--dev-text-muted);
}

    .dropdown-item:hover,
    .dropdown-item.active {
        background: rgba(56, 189, 248, 0.12);
        color: var(--dev-text);
    }

@media (max-width: 991.98px) {
    .carousel-item {
        height: auto;
        min-height: 520px;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .carousel-caption {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
    }

    .featurette {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    #myCarousel {
        margin-top: 66px;
    }

    .carousel-caption {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .marketing {
        padding-top: 3rem;
    }

        .marketing .col-lg-4,
        .featurette {
            border-radius: 16px;
        }
}
.marketing {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.marketing-grid {
    row-gap: 1.5rem;
}

.marketing-card {
    height: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--dev-card);
    border: 1px solid var(--dev-border);
    border-radius: var(--dev-radius);
    box-shadow: var(--dev-shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .marketing-card:hover {
        transform: translateY(-6px);
        border-color: rgba(56, 189, 248, 0.28);
        box-shadow: 0 24px 70px rgba(2, 8, 23, 0.5);
    }

.marketing-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: var(--dev-primary);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.marketing-icon-accent {
    color: var(--dev-accent);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.08));
    border-color: rgba(34, 197, 94, 0.22);
}

.marketing-icon-image {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.marketing-title {
    margin-bottom: 0.9rem;
    color: #f8fafc;
    font-size: 1.4rem;
    font-weight: 800;
}

.marketing-title a {
    color: inherit;
}

.marketing-title a:hover {
    color: var(--dev-primary);
}

.marketing-text {
    margin-bottom: 1.5rem;
    color: var(--dev-text-muted);
    font-size: 1rem;
    line-height: 2;
}

.marketing-btn-secondary {
    padding: 0.78rem 1.2rem;
    border-radius: 12px;
}

.featurette-divider {
    margin: 2rem 0;
    border-color: rgba(148, 163, 184, 0.12);
    opacity: 1;
}

.featurette-panel {
    margin: 0;
    padding: 2rem;
    background: var(--dev-card);
    border: 1px solid var(--dev-border);
    border-radius: var(--dev-radius);
    box-shadow: var(--dev-shadow);
}

.featurette-copy {
    padding-inline-end: 1rem;
}

.featurette-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    color: var(--dev-primary);
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.18);
    font-size: 0.92rem;
    font-weight: 700;
}

.featurette-heading {
    margin-bottom: 1rem;
    color: #f8fafc;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    font-size: clamp(2rem, 4vw, 3rem);
}

    .featurette-heading .text-body-secondary {
        display: block;
        margin-top: 0.45rem;
        color: var(--dev-primary) !important;
        font-size: 0.7em;
        font-weight: 700;
    }

.featurette-text {
    margin-bottom: 1.5rem;
    color: var(--dev-text-muted);
    line-height: 2;
    font-size: 1.04rem;
}

.featurette-media {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(22, 32, 51, 0.98), rgba(15, 23, 42, 0.98));
    border: 1px solid var(--dev-border);
    border-radius: calc(var(--dev-radius) - 2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.featurette-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border: 0 !important;
    background: transparent !important;
}

.featurette-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.featurette-placeholder-icon {
    width: 116px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    margin-bottom: 1.15rem;
    color: var(--dev-primary);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(56, 189, 248, 0.18);
}

.featurette-placeholder-icon-accent {
    color: var(--dev-accent);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.08));
    border-color: rgba(34, 197, 94, 0.22);
}

.featurette-placeholder-text {
    color: #f8fafc;
    font-size: 1.12rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .featurette-panel {
        padding: 1.5rem;
    }

    .featurette-copy {
        padding-inline-end: 0;
        text-align: center;
    }

    .featurette-eyebrow {
        justify-content: center;
    }

    .featurette-media {
        min-height: 280px;
    }

    .featurette-image {
        min-height: 280px;
    }
}

@media (max-width: 767.98px) {
    .marketing {
        padding-top: 3rem;
    }

    .marketing-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .marketing-icon {
        width: 82px;
        height: 82px;
        border-radius: 20px;
    }

    .marketing-title {
        font-size: 1.25rem;
    }

    .featurette-panel {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .featurette-heading {
        font-size: 1.8rem;
    }

    .featurette-text {
        font-size: 1rem;
    }

    .featurette-media,
    .featurette-image {
        min-height: 240px;
    }

    .featurette-placeholder-icon {
        width: 96px;
        height: 96px;
        border-radius: 24px;
    }
}

.detail-panel {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08), 0 6px 14px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    color: #1e293b;
    line-height: 1.9;
}

.detail-header {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.detail-title {
    color: #0f172a;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.detail-summary {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.detail-image {
    display: block;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.detail-body p,
.detail-body li,
.detail-body span,
.detail-body div,
.detail-body h2,
.detail-body h3,
.detail-body h4,
.detail-body h5,
.detail-body h6 {
    color: #1e293b;
}
