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

:root {
    --primary: #0B3D91;
    --secondary: #D4AF37;
    --bg-color: #FFFFFF;
    --light-section: #F7F8FA;
    --text-color: #222222;
    --border-color: #E8E8E8;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: #fff !important;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* Base Sections */
section {
    padding: 80px 0;
}

.bg-light-section {
    background-color: var(--light-section);
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 12px 28px;
    font-weight: 500;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    background-color: #082d6b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-custom {
    background-color: var(--secondary);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 12px 28px;
    font-weight: 500;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-secondary-custom:hover {
    background-color: #c29d2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 12px 28px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Navbar */
.navbar-custom {
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

.navbar-custom.scrolled {
    background: #fff;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-custom .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-custom.scrolled .nav-link {
    color: var(--text-color);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

.navbar-custom.scrolled .navbar-brand {
    color: var(--primary);
}
.navbar-custom .navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

/* Cards */
.card-custom {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background: #fff;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1555c0 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-stats h3 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 0;
}
.hero-stats p {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #082d6b;
    color: #fff;
    padding: 60px 0 30px;
}
.footer a {
    color: rgba(255,255,255,0.8);
}
.footer a:hover {
    color: var(--secondary);
}
.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Utility */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
