:root {
    --primary-color: #0d2c4e; /* Deeper, more confident blue */
    --secondary-color: #d4af37; /* Gold accent */
    --bg-light: #f8f9fa;
    --bg-dark: #091e36;
    --text-dark: #212529;
    --text-light: #ffffff;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    color: #555;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--text-dark);
}
.section-title { color: var(--primary-color); }
.section-padding { padding: 100px 0; }

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 1.2rem 0;
	background-color: var(--primary-color);
}
.navbar.scrolled {
    background-color: var(--primary-color);
    padding: 0.8rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.navbar-brand { font-weight: 800; font-size: 1.7rem; }
.nav-link { font-weight: 500; font-size: 0.9rem; margin: 0 10px; }
.nav-link.active, .nav-link:hover { color: var(--secondary-color) !important; }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 46, 92, 0.7), rgba(10, 46, 92, 0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070&auto=format&fit=crop') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}
.hero-section .lead { max-width: 600px; }
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #c49b2c;
    border-color: #c49b2c;
    transform: translateY(-3px);
}

/* Stats Counter Section */
#stats { background-color: var(--bg-dark); }
.stat-item i { color: var(--secondary-color); }
.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
}
.stat-item p { color: rgba(255, 255, 255, 0.7); }

/* Value Cards */
.value-card {
    border: 0;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.value-card i {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.value-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

/* Contact Section */
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.contact-info i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}
.contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover { color: var(--primary-color); }
.form-control {
    border-radius: 0;
    padding: 1rem;
}
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Footer */
.footer-dark {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
}
.footer-dark h5 { color: var(--text-light); }
.footer-dark a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-dark a:hover { color: var(--secondary-color); }
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 10px;
}
.social-icons a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}
.footer-dark hr { border-top: 1px solid rgba(255, 255, 255, 0.2); }

/* Animation Classes */
[class*="animate-"] {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.animate-fade-in-up { transform: translateY(50px); }
.animate-fade-in-left { transform: translateX(-50px); }
.animate-fade-in-right { transform: translateX(50px); }

.visible[class*="animate-"] {
    opacity: 1;
    transform: translate(0, 0);
}