 :root {
--primary-bg: #0b1120;
--secondary-bg: #111827;
--card-bg: #1f2937;
--accent: #d4af37;
--accent-hover: #f4d03f;
--text-light: #f8fafc;
--text-muted: #cbd5e1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Segoe UI', sans-serif;
background-color: var(--primary-bg);
color: var(--text-light);
padding-top: 76px;
}

.navbar {
background-color: rgba(11, 17, 32, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar-brand {
color: var(--accent) !important;
font-weight: 700;
letter-spacing: 1px;
}

.nav-link {
color: var(--text-light) !important;
transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
color: var(--accent) !important;
}

.hero {
min-height: 85vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background:
radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 30%),
radial-gradient(circle at bottom right, rgba(59,130,246,.15), transparent 35%),
linear-gradient(135deg, #0b1120, #111827);
}

.hero::before {
content: "";
position: absolute;
width: 500px;
height: 500px;
background: rgba(212,175,55,0.08);
border-radius: 50%;
top: -150px;
right: -100px;
filter: blur(80px);
}

.hero::after {
content: "";
position: absolute;
width: 400px;
height: 400px;
background: rgba(37,99,235,0.08);
border-radius: 50%;
bottom: -100px;
left: -100px;
filter: blur(80px);
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 4rem;
font-weight: 800;
}

.hero p {
color: var(--text-muted);
font-size: 1.2rem;
max-width: 700px;
}

.btn-gold {
background-color: var(--accent);
color: #000;
font-weight: 600;
border: none;
}

.btn-gold:hover {
background-color: var(--accent-hover);
color: #000;
}

.section-title {
text-align: center;
margin-bottom: 3rem;
font-weight: 700;
color: var(--accent);
}

.card-custom {
    background-color: var(--card-bg);
    color: var(--text-light);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.card-custom:hover {
transform: translateY(-6px);
border-color: rgba(212,175,55,0.5);
}

.card-custom .card-body {
padding: 2rem;
}

.card-custom h5 {
color: var(--accent);
}

.page-header {
padding: 100px 0;
text-align: center;
background:
radial-gradient(circle at center, rgba(212,175,55,.12), transparent 50%),
linear-gradient(135deg, #0b1120, #111827);
}

.page-header h1 {
font-size: 3rem;
color: var(--accent);
font-weight: 700;
}

.page-header p {
color: var(--text-muted);
}

.content-section {
padding: 80px 0;
}

.form-control,
.form-control:focus {
background-color: #111827;
border: 1px solid #374151;
color: white;
box-shadow: none;
}

.form-control::placeholder {
color: #94a3b8;
}

footer {
background-color: #080d18;
padding: 25px 0;
text-align: center;
margin-top: 80px;
color: var(--text-muted);
}

.feature-icon {
font-size: 2rem;
color: var(--accent);
margin-bottom: 15px;
}

@media (max-width: 768px) {
.hero h1 {
font-size: 2.7rem;
}

.page-header h1 {
    font-size: 2.2rem;
}

}