@charset "UTF-8";
:root {
    --primary-color: #0a0c10;
    --secondary-color: #111318;
    --accent-color: #00f6ff;
    --text-color: #8892b0;
    --heading-color: #e6f1ff;
    --gradient-1: linear-gradient(120deg, #00f6ff 0%, #0072ff 100%);
    --gradient-2: linear-gradient(120deg, #00f6ff 0%, #0072ff 50%, #764ba2 100%);
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    --shadow: 0 10px 30px -15px rgba(0, 246, 255, 0.1);
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
}
.navbar {
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
}
.navbar-brand-logo {
    height: 35px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(0, 246, 255, 0.3));
    transition: var(--transition);
}
.navbar-brand span {
    color: var(--heading-color);
    font-weight: 600;
    margin-left: 0.8rem;
    letter-spacing: 0.5px;
}
.nav-link {
    color: var(--heading-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-1);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover::after {
    width: 60%;
}
.hero-section {
    background: var(--primary-color);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 246, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}
.hero-logo {
    max-width: 200px;
    opacity: 0.95;
    margin-right: 4rem;
    filter: drop-shadow(0 0 20px rgba(0, 246, 255, 0.2));
}
.hero-header-group {
    justify-content: space-between;
}
.service-card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(0, 246, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.service-card:hover::before {
    opacity: 0.05;
}
.service-card .card-body {
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.btn-primary {
    background: transparent;
    border: 1.5px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: var(--transition);
    z-index: -1;
    opacity: 0.1;
}
.btn-primary:hover::before {
    left: 0;
}
.display-3 {
    font-weight: 700;
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: calc(100% - 300px);
}
section h2 {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
footer {
    background: var(--secondary-color);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
}
.card-title {
    margin-bottom: 1rem;
}
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.cta-section .btn-primary {
    box-shadow: 0 4px 15px rgba(0, 246, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.cta-section .btn-primary:hover {
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.2rem;
    }    
    .lead {
        font-size: 1.1rem;
        max-width: 100%;
    }
    .hero-logo {
        margin: 1rem 0;
        width: 150px;
    }}
img {
    loading: lazy;
}
html {
    scroll-behavior: smooth;
}
::selection {
    background-color: rgba(0, 246, 255, 0.2);
    color: var(--accent-color);
}
a {
    color: #66d9ff;
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: #99e6ff;
}