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

:root {
    /* Color Palette - Premium Nigeria Focused */
    --primary-color: #0B4D36;
    /* Deep Premium Green */
    --secondary-color: #008751;
    /* Vibrant Nigeria Green */
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --accent-hover: #b5952f;
    --text-dark: #1A1A1A;
    --text-light: #F8F9FA;
    --text-muted: #6c757d;
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
    --bg-subtle-green: #eef2f0;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    /* For premium headings */

    /* Spacing & Layout */
    --section-padding: 80px 0;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color);
}

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

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

/* Utilities */
.section-padding {
    padding: var(--section-padding);
}

.bg-primary-dark {
    background-color: var(--primary-color) !important;
}

.bg-subtle {
    background-color: var(--bg-subtle-green) !important;
}

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

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

/* Buttons */
.btn-custom {
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 135, 81, 0.3);
}

.btn-gold {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-gold:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

/* Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    background-color: #ffffff;
}

.navbar-brand {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    position: relative;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 77, 54, 0.9), rgba(11, 77, 54, 0.6));
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: -10px;
    left: 0;
    background-color: var(--accent-color);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.custom-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 135, 81, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-subtle-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.custom-card:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

/* Footer */
.footer-custom {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-title {
    color: var(--accent-color);
    font-family: var(--font-secondary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/* Timeline specific styles */
.timeline {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--accent-color);
    z-index: 1;
    margin-left: 6px;
}

.nav-pills .nav-link {
    color: var(--text-dark);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-pills .nav-link:hover {
    background-color: var(--bg-subtle-green);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-color);
}

.policy-content h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-content p,
.policy-content ul {
    color: var(--text-muted);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--bg-subtle-green);
}

.custombalert{
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo{
    width: 50px;
    height: auto;
    transform: scale(1.3);
}

.footer-logo{
    width: 200px;
    height: auto;
}