/* --- Global Styles & Typography --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Professional, readable font stack */
    color: #333333;
    background-color: #F8F9FA;
}

h1, h2, h3, h4, h5 {
    color: #003366; /* Deep Navy Blue for headings */
    font-weight: 600;
}

/* --- 1. Customizing Bootstrap Classes (Colors) --- */

/* Primary Color: Navy Blue */
.btn-primary, .bg-primary, .text-primary {
    --bs-btn-bg: #003366 !important;
    --bs-btn-border-color: #003366 !important;
    --bs-btn-hover-bg: #004d99 !important; /* Slightly lighter on hover */
    --bs-btn-hover-border-color: #004d99 !important;
}

/* Success/Accent Color: Dull Gold/Mustard */
.btn-success {
    --bs-btn-bg:#bdd5ed !important;
    --bs-btn-border-color:  #bdd5ed!important;
    --bs-btn-hover-bg: #5582af !important; /* Slightly darker on hover */
    --bs-btn-hover-border-color: #5582af !important;
    color: #003366 !important; /* Dark text for contrast on gold background */
    font-weight: 700;
}
.bg-primary {
    background-color: var(--pro-navy) !important;
}
.text-primary {
    color: var(--pro-navy) !important; 
}

/* --- 2. Navbar Styling --- */

/* Base Navbar Look */
.navbar-light {
    background-color: #ffffff !important; /* Pure white background */
    border-bottom: 2px solid #F8F9FA; /* Subtle separation line */
}

/* Logo/Brand */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800 !important;
}

/* Nav Links - Default and Hover */
.nav-link {
    color: #333333 !important; /* Darker text */
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.nav-link:hover {
    color: #003366 !important; /* Deep Navy Blue on hover */
}

/* Underline Effect on Hover (Good UX feature) */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #FDB515; /* Gold underline */
    bottom: 0;
    left: 50%;
    transition: all 0.2s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}


/* --- 3. Hero Section Enhancements --- */

.hero-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #e9ecef 100%); /* Subtle gradient for depth */
}

/* --- 4. Footer Styling --- */
.main-footer {
    background-color: #003366 !important; /* Navy Blue Footer */
}
.main-footer a {
    color: #F8F9FA !important;
    text-decoration: none;
    transition: color 0.2s;
}
.main-footer a:hover {
    color: #FDB515 !important; /* Gold on hover */
}
/* Change the large Contact CTA section background to a softer light color */
.contact-cta {
    background-color: var(--pro-light-bg) !important; 
}
/* ... and ... */
:root {
    /* ... */
    --pro-light-bg: #e9ecef; /* Very soft light gray/blue */
}

/* --- 6. Social Icon Styling (Contact Page) --- */

/* Target the links inside the d-flex container on the Contact page */
.contact-page .d-flex a { 
    color: var(--pro-navy) !important; /* Start with Deep Navy Blue */
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

/* Hover Effect: Change to Gold and slight lift */
.contact-page .d-flex a:hover {
    color: var(--pro-gold) !important; /* Change to Gold/Mustard */
    transform: translateY(-2px) scale(1.1); /* Slight vertical lift and size increase */
}

/* Ensure icons scale correctly */
.contact-page .d-flex .fs-2 {
    font-size: 1.5rem !important;
}