body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* --- Custom Theme Colors --- */
:root {
    --primary-color: #C8102E; /* A strong, professional red */
    --dark-color: #222222; /* Near black for text and dark backgrounds */
    --light-color: #ffffff;
    --text-color: #343a40; /* Standard body text */
}

/* --- Navbar --- */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    width: 10%;
    min-width: 180px;
    max-width: 250px;
}

.navbar-logo {
    width: 100%;
    height: auto;
}

.nav-link {
    font-weight: 900;
}


.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Hero Image.png') center/cover no-repeat;
    color: var(--light-color);
    padding: 12rem 0;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a20c25;
    border-color: #a20c25;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
    background-color: var(--light-color);
    border-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e9ecef;
    border-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- Section Styling --- */
.section {
    padding: 5rem 0;
}

.section-title {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-top: -2.5rem;
    margin-bottom: 3rem;
}

/* --- About Us Section --- */
.about-us-list li {
    list-style: none;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-us-list .fa-check-circle {
    color: var(--primary-color);
    margin-right: 10px;
}

/* --- Services & Resources Cards --- */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* --- Success Stories --- */
#success-stories {
    background-color: #e9ecef;
}

.testimonial {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    font-style: normal;
    color: var(--primary-color);
    margin-top: 1rem;
    display: block;
}

/* --- Get Started Section --- */
#get-started {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    border-radius: 20px;
}

/* --- Contact Section --- */
.contact-info i {
    width: 30px;
    color: var(--primary-color);
}

.social-icons a {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* --- Footer --- */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--light-color);
}

.footer .disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* --- Connect Form --- */
.connect-card {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: #f899a9;
    box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.25);
}

