
:root {
    --brand-blue: #2b44c2; 
    --hero-navy: #1e3a8a;
}

.nav-link {
    padding-bottom: 5px !important;
    border-bottom: 2px solid transparent !important;
}
.nav-link.active, .nav-link:hover {
    border-bottom: 2px solid var(--brand-blue) !important;
    color: var(--brand-blue) !important;
}
.text-primary {
    color: var(--brand-blue) !important;
}

.btn-primary {
    background-color: var(--hero-navy) !important;
    border-color: var(--hero-navy) !important;
}


h1, h2, .navbar-brand {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -1px;
}


.bg-light-blue {
    background-color: #f0f4ff !important;
}

.bg-light-blue { background-color: var(--light-blue-bg); }
.text-primary { color: var(--primary-blue) !important; }
.btn-primary { background-color: var(--primary-blue); border-color: var(--primary-blue); }

.hero-section {
    height: 80vh;
    background: url('../img/img1.jpg') center/cover no-repeat;
}

.hero-card {
    background-color: var(--primary-blue);
    max-width: 550px;
}

.about-img {
    background: url('../img/img2.jpg') center/cover no-repeat;
    background-position-y: 20px;
}


.update-img-box {
    height: 350px;
    border: 1px solid var(--primary-blue);
    background-size: cover;
    background-position: center;
}
.education { background-image: url('../img/img3.jpg'); }
.community { background-image: url('../img/img4.jpg'); }
.equality { background-image: url('../img/img5.jpg'); }


.form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Reduce the gap and make the input field feel more present */
.custom-form-row {
    transition: background-color 0.2s ease;
    cursor: text; /* Shows the user they can click anywhere here to type */
}

/* Subtle background when hovering over the row */
.custom-form-row:hover {
    background-color: rgba(43, 68, 194, 0.03); /* Very faint blue tint */
}

/* Make the input field span the full height so the click area is larger */
.custom-form-row .form-control {
    height: 100%;
    box-shadow: none !important; /* Removes the default Bootstrap glow */
}

/* This helps if users click the label - it focuses the input automatically */
.custom-form-row label {
    cursor: pointer;
    white-space: nowrap;
}

.x-small { font-size: 0.75rem; }


.border-opacity-10 {
    border-color: rgba(43, 68, 194, 0.1) !important;
}

.bg-soft-alt {
    background-color: #f8f9fa !important; /* A very clean, professional off-white */
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}


/* Typography for Blog Content */
.post-body {
    color: #2d3436;
    letter-spacing: -0.01em;
}

.post-body p {
    margin-bottom: 1.8rem;
}

/* Style for blockquotes if you use them in your blog content */
.post-body blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #1e3a8a;
    border-left: 5px solid #1e3a8a;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
}

/* Breadcrumb Styling */
.breadcrumb-item a {
    color: #1e3a8a;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Share Button Circles */
.share-links .btn {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@media (max-width: 991px) {
    .min-vh-50 { min-height: 50vh; }
    .hero-section { padding-left: 0; }
    .hero-card { max-width: 100%; border-radius: 0; }
}