/* Color Palette */
:root {
    --primary-blue: #0a2342;
    --accent-gold: #c5a059;
    --deep-dark: #07192f;
    --light-bg: #f8faff;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: "Outfit", sans-serif;
    color: #333;
    line-height: 1.8;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.navbar-brand img {
    height: 50px;
}
a.nav-link:before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c5a059;
    display: inline-block;
    margin-right: 7px;
}
li.nav-item {
    margin-right: 15px;
}
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
	font-size:42px;
    color: var(--primary-blue);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}
b, strong {
    font-weight: 600;
}
p {
    font-size: 17px;
    line-height: 27px;
    color: #04162c;
}
.about-content-home p {
	text-align:justify;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand {
    color: var(--primary-blue) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.btn-primary-custom {
    background-color:  var(--accent-gold);
    color: var(--white);
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color:var(--primary-blue);
    color: var(--white);
}

.bg-primary-custom {
    background-color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.85)), 
                url('assets/images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 160px;
}
.hero-section h1 {
    font-size: 82px;
}
.hero-section p {
    font-size: 32px;
    line-height: 44px;
}

/* Vision/Mission Cards */
.border-top-gold { border-top: 5px solid var(--accent-gold); }
.border-top-blue { border-top: 5px solid var(--primary-blue); }

.mission-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    line-height: 24px;
}
.mission-item i {
    color: var(--accent-gold);
    margin-top: 5px;
}
section#mission p {
    line-height: 30px;
}
.section-title span {
    color: #c5a059;
}
/* Focus Areas Grid */
.focus-card {
    background: rgba(255,255,255,0.05);
    padding: 30px 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    transition: 0.3s;
}
.fw-bold {
    font-weight: 600 !important;
}
.why-card h6 {
    font-size: 22px;
    font-weight: 500 !important;
}
.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(11 42 67) !important;
}
.why-card i.fa-solid {
    font-size: 48px !important;
}
.text-accent-gold {
    color: #c5a059;
}
.focus-card:hover {
    background: var(--accent-gold);
}
section#focus h6 {
    font-size: 18px;
}
.wht-block {
    border-bottom: solid 3px #6c6c6c47;
}
section#what-we-do h5 {
    font-size: 24px;
}
.wht-block p {
    font-size: 18px;
    margin-top: 15px;
}
.focus-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.focus-card:hover i, .focus-card:hover h6 {
    color: var(--white) !important;
}

.why-card {
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold) !important;
}

.bg-light-custom {
    background-color: var(--light-bg);
}

/* Responsive Fixes */
@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 48px;
	}
    .display-3 { font-size: 2.5rem; }
    .section-padding { padding: 60px 0; }
}