:root {
    --head: #0C2E53;
    --navy: #001f3f;
    --gold: #D4AF37;
    --light-gold: #eeda9a;
    --champagne: #F4EBD0;
    --light-grey: #f8f9fa;
    --text-main: #001f3f;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.7;
}

h1, h2, h3, h4, h5,h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h5 {
    font-weight:100 !important;

}
.bg-navy { background-color: var(--navy); color: white; }
.text-gold { color: var(--gold); }

/* Hero Section */
.hero-split {
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.inner-split {
    padding: 50px 0;
    display: flex;
    align-items: center;
}

/* Problem Cards */
.truth-card {
    border-left: 4px solid var(--gold);
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.small-card{
    padding: 10px !important;
    margin-bottom: 5px !important;

}
.truth-card:hover {
    transform: translateX(10px);
}

/* Lead Magnet Ribbon */
.audit-ribbon {
    background: var(--champagne);
    padding: 60px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.btn-consultant {
    background-color: var(--gold);
    color: white;
    padding: 10px 40px;
    border-radius: 5px;
    font-weight: 600 !important;
    letter-spacing: 1px;
    transition: 1s;
}

.btn-consultant:hover {
    background-color: white;
    color: var(--navy);
}

/* Navbar */
.navbar {
    background: #0C2E53 !important;
    border-bottom: 1px solid #eee;
}

.nav-link { color: white; font-weight: 500; margin:5px; }

.nav-link:focus, .nav-link:hover, .nav-link.active { color: var(--gold) !important; } 

.dark-border{
        text-align: center;
        background-color: var(--gold);
}
.inner-border{
        text-align: center;
        background-color: var(--light-gold);
}
.nomargin{
    margin:0 !important;
}

.list-dot {
    /* padding-left: 0; */
    list-style:disc;
}

.list-circle {
    /* padding-left: 0; */
    list-style:circle;
}

.a-link { color: var(--navy); font-weight: 500; margin:5px; text-decoration: none; }

.a-link:focus, .a-link:hover, .a-link.active { color: var(--gold) !important; } 

/* Blinking List item */
.blink {
    /* color: var(--gold); */
    font-weight: bold;
    animation: blinkEffect 1s infinite;
}

@keyframes blinkEffect {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
/* Blinking List item */

/* Social Media Icons */
.social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.social-icon:hover {
    color: #d4af37; /* Gold hover effect */
    transform: scale(1.2);
}
/* Social Media Icons */

/* Personal Social Media  */

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 22px;
    color: var(--navy); /* gold tone */
    transition: 0.3s ease;
}

.social-link:hover {
    color:var(--gold);
    transform: scale(1.2);
}
/* Personal Social Media  */
