/* RESET AND BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333333; /* Darker gray instead of harsh black */
    line-height: 1.65; /* Increased line height for spaciousness (luxury look) */
    background-color: #f4f7f6;
}

a {
    text-decoration: none;
    color: #0056b3;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    height: 40px;
}

.navbar nav a {
    margin-left: 30px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #0056b3;
}

/* Refined CTA Button look (used in navbar) */
.cta-button {
    background-color: #f7b32d !important; /* Standout Gold/Yellow Accent */
    color: #1a1a1a !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e09900 !important;
}

/* HERO SECTION */
.hero-section {
    /* Using temporary asset for background: Flyer Background 4.jpg */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/img/Flyer Background 4.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 5%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.primary-cta {
    background-color: #fff;
    color: #0056b3;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.primary-cta:hover {
    background-color: #ddd;
}

/* CONTENT PREVIEW (SERVICES) */
.content-preview {
    padding: 60px 5%;
    text-align: center;
}

.content-preview h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.card-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s;
    border-top: 5px solid #0056b3;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.secondary-cta {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #0056b3;
    color: #0056b3;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.secondary-cta:hover {
    background-color: #0056b3;
    color: #fff;
}

/* CUSTOM STYLED LISTS (to make bullets "not static looking") */
.advantages-section {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.advantages-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.styled-list {
    list-style: none; /* Remove default list style */
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.styled-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px; /* Space for the custom bullet */
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: "\2713"; /* Unicode checkmark */
    color: #0056b3; /* Blue color for professionalism */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}


/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 5px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-icon {
    font-size: 1.4em; /* Size for LinkedIn icon */
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
    .navbar nav {
        margin-top: 10px;
    }
    .navbar nav a {
        margin: 0 10px;
    }
    .card-container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2em;
    }
}
/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* --- BREADCRUMBS STYLES (NEW) --- */
.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 5%; /* Matches the padding of content sections */
    background-color: #e9ecef; /* Very light gray to set it apart from white navbar */
    font-size: 0.9em;
    border-bottom: 1px solid #ddd;
}

.breadcrumbs-container a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs-container a:hover {
    text-decoration: underline;
}

.breadcrumbs-container span {
    color: #6c757d; /* Muted color for the current page */
    font-weight: 600;
}
/* --- END BREADCRUMBS STYLES --- */


/* Generic hero for internal pages */
.page-hero {
    /* REPLACEMENT LINE: Includes the image, path, overlay, size, and position */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/img/Flyer Background 4.jpg') center/cover no-repeat;
    
    padding: 80px 20px; /* Added for better vertical spacing */
    min-height: 250px; /* Ensures consistent visual height */
    text-align: center;
    position: relative;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Ensure the hero text is positioned correctly */
.page-hero h1 {
    font-size: 3em;
}

.page-hero p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 20px auto 0;
}


/* General content section styling */
.content-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Final Polish: Separators for sections */
.content-section:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* Two-column layout for text and image */
.text-and-image {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-and-image .text-content {
    flex: 1;
}

.text-and-image .image-placeholder {
    flex: 1;
    min-width: 300px;
}

.text-and-image .image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Callout box for emphasis */
.callout-section {
    background-color: #e6f0ff; /* Light blue background */
    padding: 40px 5%;
    text-align: center;
    border-radius: 8px;
    margin: 40px auto;
}

.callout-box h2 {
    color: #0056b3;
    margin-bottom: 15px;
}

.commitment-section {
    text-align: center;
}

.commitment-detail {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1em;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .text-and-image {
        flex-direction: column; /* Stack image and text on small screens */
    }
}
/* --- LEADERSHIP PAGE SPECIFIC STYLES --- */

.leadership-profile {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on small screens */
    gap: 40px;
    align-items: flex-start; /* Aligns content to the top */
}

.leadership-profile .profile-image {
    flex: 0 0 300px; /* Fixed width for image column */
    max-width: 100%;
    text-align: center;
    padding-top: 10px;
}

.leadership-profile .profile-image img {
    border-radius: 50%; /* Makes the profile picture round */
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.leadership-profile .profile-details {
    flex: 1; /* Takes up remaining space */
}

.leadership-profile .profile-details h2 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.leadership-profile .profile-details h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
}

.social-links-profile {
    margin-top: -10px;
    margin-bottom: 20px;
}

.social-icon-large {
    font-size: 2.5em;
    color: #0056b3;
    transition: color 0.3s;
}

.social-icon-large:hover {
    color: #004494;
}

/* Responsive adjustment for small screens */
@media (max-width: 900px) {
    .leadership-profile {
        flex-direction: column;
        align-items: center;
    }

    .leadership-profile .profile-image {
        flex: auto;
        margin-bottom: 20px;
    }

    .leadership-profile .profile-details {
        text-align: center;
    }

    .leadership-profile .profile-details .styled-list {
        text-align: left;
    }
}
/* --- ADVANTAGES PAGE SPECIFIC STYLES --- */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive 2x2 or 1x4 grid */
    gap: 30px;
    padding-top: 40px;
}

.advantage-block {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border-top: 4px solid #0056b3; /* Consistent primary color accent */
}

.advantage-block:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.advantage-icon {
    font-size: 3em;
    color: #0056b3;
    margin-bottom: 15px;
}

.advantage-block h2 {
    font-size: 1.4em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.styled-list-mini {
    list-style: none; /* Remove default list style */
    text-align: left;
    max-width: 90%;
    margin: 15px auto 0;
}

.styled-list-mini li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95em;
}

.styled-list-mini li::before {
    content: "\2713"; /* Smaller checkmark bullet */
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
}
/* --- CAPITAL RAISING/SERVICE PAGE SPECIFIC STYLES --- */

.service-detail {
    text-align: center;
}

.service-detail h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.service-detail p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

.service-split {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.service-pillar {
    flex: 1;
    min-width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-pillar h3 {
    color: #0056b3;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-icon-small {
    font-size: 1.2em;
    margin-right: 10px;
}

.centered-cta {
    margin-top: 30px;
    display: inline-block;
}

/* Responsive adjustment for service columns */
@media (max-width: 900px) {
    .service-split {
        flex-direction: column;
    }
}
/* --- AFFILIATIONS PAGE SPECIFIC STYLES --- */

.affiliations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive 2x2 or 4x1 grid */
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.affiliate-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-bottom: 3px solid #0056b3;
    transition: transform 0.3s;
}

.affiliate-card:hover {
    transform: translateY(-5px);
}

.affiliate-icon {
    font-size: 3.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.affiliate-card h3 {
    font-size: 1.3em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.secondary-cta-small {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 15px;
    border: 1px solid #0056b3;
    color: #0056b3;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9em;
    transition: background-color 0.3s, color 0.3s;
}

.secondary-cta-small:hover {
    background-color: #0056b3;
    color: #fff;
}
/* --- CONTACT PAGE SPECIFIC STYLES --- */

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-top: 40px;
}

.contact-form-container {
    flex: 2; /* Takes more space for the form */
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info-container {
    flex: 1; /* Takes less space for info */
    padding: 30px 0;
}

.contact-form-container h2,
.contact-info-container h2 {
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 1.6em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-info-container .info-block {
    margin-bottom: 30px;
}

.contact-info-container .info-icon {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 10px;
}

.contact-info-container .detail {
    font-weight: 600;
    color: #333;
}

.social-links-contact {
    margin-top: 30px;
    text-align: left;
}

/* Responsive adjustment for contact columns */
@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
    }
}
/* --- SERVICES OVERVIEW PAGE SPECIFIC STYLES --- */

.service-overview-grid {
    text-align: center;
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-overview-grid h2 {
    grid-column: 1 / -1; /* Make the heading span all columns */
    margin-bottom: 30px;
}

.service-card-full {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-top: 5px solid #0056b3;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-icon-big {
    font-size: 3.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.service-card-full h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-card-full p {
    margin-bottom: 20px;
    font-size: 0.95em;
    min-height: 40px;
}

.primary-cta-small {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.primary-cta-small:hover {
    background-color: #004494;
}

.service-card-full .styled-list-mini {
    text-align: left;
    margin-bottom: 20px;
}
/* --- VISUAL POLISH: TYPOGRAPHY AND HERO BACKGROUNDS --- */

/* Base Typography Refinement */
h1, h2, h3, h4 {
    letter-spacing: -0.5px; /* Tighten up headings for a crisp look */
    line-height: 1.15;
}

/* New: Highlight key values with accent color */
.highlight-value {
    color: #f7b32d; /* Accent Gold/Yellow color */
    font-weight: 700;
}

/* --- HERO SECTION STYLES (CORRECTED AND COMPLETE) --- */
/* ... (rest of the CSS) ... */
/* --- HERO SECTION STYLES (CORRECTED AND COMPLETE) --- */
.page-hero {
    /* REPLACEMENT LINE: Includes the image, path, overlay, size, and position */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/img/Flyer Background 4.jpg') center/cover no-repeat;
    
    padding: 80px 20px; /* Added for better vertical spacing */
    min-height: 250px; /* Ensures consistent visual height */
    text-align: center;
    position: relative;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Ensure the hero text is positioned correctly */
.page-hero h1 {
    font-size: 3em;
}

.page-hero p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 20px auto 0;
}

/* Final Polish: Separators for sections */
.content-section:not(:last-child) {
    border-bottom: 1px solid #eee;
}
/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* General Split Layout for About and Services Detail Pages */
.content-split {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.content-split .split-text {
    flex: 2;
}

.content-split .split-image {
    flex: 1;
    text-align: center;
}

.content-split img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-split.reverse-split {
    flex-direction: row-reverse;
}

/* Specific Profile Callout Section */
.director-profile-callout {
    background-color: #f7f9fc; /* Very light subtle background */
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 8px;
}

.profile-summary {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}

.profile-text {
    flex: 2;
}

.profile-details {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #f7b32d; /* Accent color bar */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.profile-details .detail-title {
    color: #0056b3;
    margin-top: 0;
    font-size: 1.2em;
}

.styled-list-check {
    list-style: none;
    padding-left: 0;
}

.styled-list-check li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.styled-list-check .fas {
    color: #0056b3;
    margin-right: 10px;
}

/* Responsive adjustments for the about page */
@media (max-width: 900px) {
    .content-split,
    .content-split.reverse-split,
    .profile-summary {
        flex-direction: column;
    }

    .content-split .split-text,
    .content-split .split-image,
    .profile-text,
    .profile-details {
        flex: 1 1 100%;
        width: 100%;
    }

    .profile-details {
        margin-top: 20px;
        border-left: none;
        border-top: 4px solid #f7b32d;
    }
}

/* --- SERVICES PAGE STYLES (VER 10 - Final Global Consistency Fix) --- */

/* Main Container: Use Flexbox to arrange the cards */
.services-grid {
    display: flex; /* Forces horizontal arrangement */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center; /* Center cards horizontally */
    gap: 30px; /* Space between cards */
    padding: 40px 0;
    align-items: stretch; /* FIX 2: Ensures all cards stretch to the same height (fixes scramble) */
    margin-top: 50px;
}

.services-grid h2 {
    width: 100%; /* Ensures the title spans the entire width */
    text-align: center;
    margin-bottom: 20px;
}

/* Individual Service Card Styling */
.service-card_container {
    flex: 0 0 350px; /* Prevents cards from expanding to fill the container */
    max-width: 350px; /* Sets the maximum width of the cards */
    /* Uses consistent global styling */
    background-color: #ffffff;
    border: 1px solid #0056b3; /* Consistent Primary Blue Border */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon-large {
    font-size: 3.5rem;
    color: #0056b3; /* Consistent Primary Blue Icon */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0056b3; /* Consistent Primary Blue Heading */
}

/* List Style Fix */
.styled-list-compact {
    list-style: none; /* REMOVES ALL DEFAULT BULLETS */
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.styled-list-compact li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #333;
}

.styled-list-compact li i {
    /* FIX FOR CONSISTENCY: Changed from Gold/Accent (#f7b32d) to Primary Blue (#0056b3) */
    color: #0056b3; /* Consistent Primary Blue for Icons */
    margin-right: 10px;
}


/* Secondary Services/Affiliates Section */
.secondary-services {
    text-align: center;
    padding: 60px 0;
    background-color: #f4f7f6; /* Consistent light background from body style */
}

.affiliate-cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.affiliate-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.affiliate-icon {
    font-size: 2rem;
    color: #0056b3; /* Consistent Primary Blue */
    margin-bottom: 10px;
}

.affiliate-card h4 {
    font-size: 1.1rem;
    color: #0056b3; /* Consistent Primary Blue */
    margin-bottom: 5px;
}

.affiliate-card p {
    font-size: 0.9rem;
    color: #555;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
    .navbar nav {
        margin-top: 10px;
    }
    .navbar nav a {
        margin: 0 10px;
    }
    .card-container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2em;
    }
}
@media (max-width: 992px) {
    /* Ensure responsiveness rules are applied */
    .content-section {
        padding: 40px 3%; /* Slight adjustment for better mobile padding */
    }
}