@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Outfit'i her yerde zorunlu kıl */
html, body, button, input, select, textarea, .btn, .form-control, .form-select,
h1, h2, h3, h4, h5, h6, p, span, div, a, li, label, small, code,
.hero, .hero h1, .stat-card-number, .section-title h2 {
    font-family: 'Outfit', sans-serif !important;
}
i[class^="bi-"], i[class*=" bi-"], .bi {
    font-family: 'bootstrap-icons' !important;
}
/* Başlık ağırlıkları */
h1, .h1 { font-weight: 700; }
h2, .h2 { font-weight: 700; }
h3, .h3 { font-weight: 600; }
h4, .h4 { font-weight: 600; }
h5, .h5 { font-weight: 600; }
h6, .h6 { font-weight: 500; }
strong, b { font-weight: 600; }

:root {
    --primary: #0f1633;       /* 1 shade brighter navy steel background */
    --secondary: #1a2254;     /* 1 shade brighter steel blue cards */
    --secondary-light: #2b367c;
    --brand: #7066ff;         /* Brighter Indigo */
    --brand-hover: #6bb2ff;   /* Bright Electric Sky Blue */
    --brand-light: rgba(112, 102, 255, 0.22);
    --accent: #b085ff;        /* Bright Purple */
    --accent-light: rgba(176, 133, 255, 0.22);
    --light-bg: #151e44;      /* Lighter steel navy background for sections */
    --text-dark: #ffffff;     /* White Text */
    --text-muted: #b8c7e6;    /* Lighter slate text */
    --success: #6bb2ff;       /* Success Blue */
    --warning: #f59e0b;
    --border-color: rgba(112, 102, 255, 0.22);
    --card-shadow: 0 20px 50px rgba(3, 5, 20, 0.5);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #0b1026;
    background-image: 
        linear-gradient(rgba(112, 102, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 102, 255, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, #253375 0%, #111740 60%, #080b26 100%);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    background-position: center top, center top, center top;
    background-repeat: repeat, repeat, no-repeat;
    background-attachment: scroll, scroll, fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Glowing Blobs */
.glow-blob {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(92, 84, 241, 0.16) 0%, transparent 70%);
    top: -10%;
    left: -200px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.glow-blob.right {
    background: radial-gradient(circle, rgba(92, 84, 241, 0.12) 0%, transparent 70%);
    top: 45%;
    left: auto;
    right: -200px;
}

/* Floating Glass Navbar */
.navbar {
    position: absolute !important;
    background-color: rgba(15, 23, 42, 0.35) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(246, 249, 247, 0.08) !important;
    margin-top: 20px;
    border-radius: 100px;
    max-width: 1400px;
    left: 50% !important;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    z-index: 1030;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0.5rem 1.5rem !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

/* Header links staggered roll */
.nav-link-custom {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.char-wrapper {
    display: inline-block;
    position: relative;
    height: 24px;
    overflow: hidden;
}

.char-primary,
.char-hover {
    display: block;
    height: 24px;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    transition-delay: inherit;
}

.char-primary {
    color: rgba(255, 255, 255, 0.7);
}

.char-hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #ffffff;
}

.nav-link-custom:hover .char-primary {
    transform: translateY(-100%);
}

.nav-link-custom:hover .char-hover {
    transform: translateY(-100%);
}

.char-space {
    display: inline-block;
    width: 4px;
}

.nav-link-custom.active .char-primary {
    color: #ffffff;
    font-weight: 700;
}

.nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-hover) 100%);
    border-radius: 100px;
}

/* Block-level slide animation for Login Button */
.btn-login-custom {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    height: 38px;
    padding: 0 1.25rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #0f172a 0%, #030712 100%);
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login-inner {
    display: flex;
    flex-direction: column;
    height: 76px;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-login-content {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-login-custom:hover {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
    border-color: var(--brand) !important;
}

.btn-login-custom:hover .btn-login-inner {
    transform: translateY(-38px);
}

/* Footer styling */
.footer {
    background-color: rgba(15, 23, 42, 0.35) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(246, 249, 247, 0.08) !important;
    border-radius: 24px;
    margin: 40px auto 40px;
    padding: 30px !important;
    max-width: 1400px;
    width: calc(100% - 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.footer-link-custom {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
}

.footer-link-custom .char-primary {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-link-custom .char-hover {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-link-custom:hover .char-primary {
    transform: translateY(-100%);
}

.footer-link-custom:hover .char-hover {
    transform: translateY(-100%);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(16, 178, 97, 0.05);
    border: 1px solid rgba(16, 178, 97, 0.15);
    border-radius: 100px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: #10b261;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(16, 178, 97, 0.6);
    animation: status-pulse 2s infinite ease-in-out;
}

@keyframes status-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(16, 178, 97, 0.5);
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 8px 3px rgba(16, 178, 97, 0.3);
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(16, 178, 97, 0.5);
    }
}

.social-icon-link {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
}

.social-icon-link:hover {
    color: #ffffff !important;
    border-color: var(--brand);
    background: rgba(92, 84, 241, 0.1);
    box-shadow: 0 0 15px rgba(92, 84, 241, 0.4);
    transform: scale(1.05);
}

/* Global Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-muted {
    color: var(--text-muted) !important;
}
