/* --- Global Styles --- */
body {
    font-family: "Figtree", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: "Lora", serif;
} */

/* Max Width Container */
.site-container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1035;
}

@media (max-width: 1600px) {
    .site-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* no padding for mobile */
@media screen and (max-width: 768px) {
    .site-container {
        padding: 0rem 0rem !important;
    }

    .navbar {
        padding: 0rem 1rem !important;
    }
}

/* Custom Primary Color (Example: Forest Green from your PDF) */
:root {
    --bs-primary: #228B22;
    --bs-primary-rgb: 34, 139, 34;
    --bs-primary-text: #ffffff;
    --bs-primary-bg-subtle: #d3f9d3;
    --bs-primary-border-subtle: #a1e9a1;
    --bs-link-color: var(--bs-primary);
    --bs-link-hover-color: #1a6a1a;
    /* Darker green */
}

/* Button Overrides */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #1a6a1a;
    border-color: #175e17;
}

.btn:focus:not(:focus-visible),
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active {
    background-color: var(--bs-link-hover-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.5) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary-text) !important;
}


.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-control:focus,
.form-select:focus {
    color: #1C1D1F;
    background-color: #fff;
    border-color: var(--bs-primary);
    outline: 0;
    box-shadow: 0px 0px 0px 4px rgba(var(--bs-primary-rgb), 0.25);
}

/* --- Header Styles --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1060;
    background-color: #fff;
    /* White background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header .navbar-brand img {
    height: 50px;
    /* Adjust logo height */
}

.main-header .navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.8rem 1rem;
    /* Adjust padding for spacing */
    color: #333;
    /* Darker text */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.header-actions .btn {
    margin-left: 0.5rem;
}

/* Hide desktop nav on mobile */
.navbar-collapse {
    justify-content: center;
    /* Center the nav links */
}


/* --- Hero Section Styles --- */
.hero-section {
    height: 80vh;
    /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../images/herobgold.jpg') no-repeat top center;
    /* Placeholder */
    background-size: cover;
    padding-bottom: 4rem !important;
    /* Space for content */
}

/* Gradient Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Adjust gradient */
    z-index: 1;
}

.hero-content {
    position: relative;
    /* Ensure text is above overlay */
    z-index: 2;
    max-width: 1200px;
    /* Limit text width */
}

.hero-content .display-3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .hero-content .display-3 {
        line-height: 1.2;
    }
}

/* --- Content Section Styles --- */
.section-padding {
    padding: 4rem 2rem;
}

.section-heading {
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Optional: Underline effect for heading */
/* .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--bs-primary);
} */

/* Welcome Section - Alternating Layout Example */
.welcome-section img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Collections - Card Styling */
.featured-collections .card {
    border: none;
    overflow: hidden;
    /* Ensure image fits */
}

.featured-collections .card img {
    height: 250px;
    /* Fixed height for consistency */
    object-fit: cover;
}

.featured-collections .card-title {
    font-weight: 600;
}

/* Featured Collections - Card Styling (Background Image Version) */
.featured-collections .featured-card {
    position: relative;
    /* Needed for absolute positioning of overlay */
    background-size: cover;
    background-position: center;
    min-height: 350px;
    /* Give the card a minimum height */
    border: none;
    overflow: hidden;
    display: block;
    /* Ensure the link behaves like a block */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-collections .featured-card:hover {
    transform: scale(1.03);
    /* Subtle scale effect on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.featured-collections .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Gradient covers bottom 70% */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    /* Dark gradient from bottom */
    z-index: 1;
    transition: height 0.3s ease;
    /* Optional: Animate gradient height */
}

/* Optional: Make gradient cover more on hover */
.featured-collections .featured-card:hover .card-overlay {
    height: 60%;
}


.featured-collections .featured-card .card-body {
    position: relative;
    /* Keep for z-index */
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    /* Make card-body fill the card height */
    /* d-flex flex-column justify-content-end are applied in HTML */
}

.featured-collections .featured-card .card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    /* Text shadow for readability */
}

.featured-collections .featured-card .card-text {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
    /* Slightly fade the description */
}


/* Latest News - Card Styling */


/* --- Add/Update in style.css --- */

/* Welcome Section Adjustment */
@media (min-width: 992px) {
    .welcome-section .ps-lg-5 {
        padding-left: 3rem !important;
        /* Increase padding between image/text */
    }
}

.welcome-section h2 span.text-primary {
    /* Optional: Style the highlighted word */
    /* border-bottom: 3px solid var(--bs-primary); */
}


/* Featured Collections - Minor Refinements */
.featured-collections .section-heading p {}

/* Partners Section */
.partners-section {
    background-color: #e9ecef;
    /* Light gray background */
}

.partner-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    /* Helps vertically center content */
    align-items: center;
    justify-content: center;
    min-height: 120px;
    /* Ensure cards have some height */
}

.partner-logo {
    max-height: 70px;
    /* Limit logo height */
    max-width: 100%;
    object-fit: contain;
    /* Scale logo nicely */
}

.partner-name-placeholder {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}


/* News & Events Section */
.news-list-item,
.event-list-item {
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background-color: #fff;
}

.hover-primary:hover {
    color: var(--bs-primary) !important;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--bs-primary);
}

.read-more-link:hover {
    color: var(--app-primary-darker);
    text-decoration: underline;
}

/* Event List Specific Styles */
.event-list-item {
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
}

.event-date {
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary);
    text-align: center;
    padding: 0.5rem;
    margin-right: 1rem;
    min-width: 60px;
    border-radius: 0.5rem;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.1;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.event-details {
    flex-grow: 1;
}

.event-details h5 {
    margin-bottom: 0.25rem !important;
    /* Reduce space below event title */
}

.event-details small i {
    opacity: 0.7;
}

/* --- Add/Update in style.css --- */

/* Visit Us Section (Enhanced) */
.visit-section-enhanced {
    /* Background image set inline for easier modification */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Override default heading underline for this section */
.visit-section-enhanced .section-heading h2::after {
    display: none;
    /* Hide the green underline */
}

.visit-card {
    /* background: rgba(0, 0, 0, 0.6); Dark translucent background */
    /* border-radius removed globally */
    /* border: 1px solid rgba(255, 255, 255, 0.1); Optional subtle border */
    transition: background-color 0.3s ease;
}

/* Optional hover effect */
/* .visit-card:hover {
    background: rgba(0, 0, 0, 0.75);
} */

.visit-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* Keep circle for icons */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary-text);
    /* White icon */
}

.visit-card h4 {
    color: #fff;
    /* White heading */
}

.visit-card p {
    color: rgba(255, 255, 255, 0.9);
    /* Slightly off-white text */
}

.visit-card strong {
    color: #fff;
    /* Make times stand out */
}

/* --- Optional styles for Visit Us (Compact) section --- */
.visit-section-compact {
    background-color: #ffffff;
    /* Or keep transparent/bg-light */
    padding-top: 2.5rem;
    /* Adjust vertical padding */
    padding-bottom: 2.5rem;
}

.visit-section-compact h3 {
    color: var(--bs-primary);
    /* Use primary color for heading */
}

/* Ensure button wraps nicely on small screens if needed */
@media (max-width: 767.98px) {
    .visit-section-compact .btn-lg {
        width: 100%;
    }
}


/* --- Add/Update in style.css --- */

/* Page Header Section */
.page-header {
    /* background-color set via class */
    /* Add padding if needed, although section-padding is used */
}

.page-header h1 {
    /* Optional: Style page title */
}

.search-form-collections .form-control {
    border: none;
    /* Remove border for seamless look */
    /* border-radius removed globally */
}

.search-form-collections .btn {
    border: none;
    /* Remove border */
    font-weight: 500;
}

.search-form-collections .btn i {
    font-size: 1.1rem;
}


/* Collections Results Area */
.filter-sidebar {
    /* Styles for the filter column */
}

/* Make filter sidebar sticky on large screens */
@media (min-width: 992px) {
    .filter-sticky-container {
        position: sticky;
        top: 100px;
        /* Adjust based on header height + desired offset */
        z-index: 1000;
        /* Lower than header */
        background-color: #fff;
        /* Give it a background */
        padding: 1.5rem;
        border: 1px solid #eee;
        /* border-radius removed globally */
    }
}

/* Style filter groups for clarity */
.filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem !important;
}

.filter-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group .form-label {
    font-size: 0.9rem;
    color: #555;
}


.results-table-container {
    /* Container for the table */
}

.specimen-table {
    font-size: 0.9rem;
    /* Slightly smaller text in table */
}

.specimen-table thead th {
    background-color: #f8f9fa;
    /* Light header background */
    font-weight: 600;
    white-space: nowrap;
    /* Prevent headers from wrapping */
}

.specimen-table tbody td {
    vertical-align: middle;
    /* Align content vertically */
}

.specimen-table-img {
    display: block;
    width: 80px;
    /* Fixed width */
    height: 60px;
    /* Fixed height */
    object-fit: cover;
    /* Cover the area */
    background-color: #eee;
    /* Background for missing images */
    /* border-radius removed globally */
}

/* Optional: Add hover effect to table rows */
.specimen-table tbody tr:hover {
    background-color: #f8f9fa;
    /* Light highlight on hover */
}

/* ... existing global, header, hero, index sections, footer styles ... */

/* --- Add/Update in style.css --- */

/* Specimen Detail Page V3 Styles */
.specimen-details-v3 {
    background-color: #f8f9fa;
    /* Light background for the whole page */
    padding-bottom: 4rem;
}

.specimen-image-v3 {
    border: 1px solid #dee2e6;
    width: 100%;
    max-height: 600px;
    /* Adjust as needed */
    object-fit: contain;
    background-color: #fff;
    /* White background behind image */
}

/* Flickr embed styling */
.flickr-embed-container.ratio-1x1 iframe {
    border: 1px solid #dee2e6;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
}

.primary-details-card {
    border: 1px solid #dee2e6;
    /* border-radius removed */
}

.primary-details-card dl dt {
    /* Definition term */
    font-weight: 500;
    padding-bottom: 0.5rem;
    /* Add space below label */
}

.primary-details-card dl dd {
    /* Definition description */
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    /* Make key details slightly bolder */
    padding-bottom: 0.5rem;
}

/* Styling for Detail Sections */
.detail-section .card-header {
    /* Style the green header */
    padding: 0.75rem 1.25rem;
}

.detail-section .card-header h4 {
    font-size: 1.1rem;
    /* Smaller heading for sections */
    font-weight: 600;
}

.detail-section .card-header i {
    font-size: 1rem;
    vertical-align: baseline;
}

.detail-section .card-body {
    padding: 1.5rem;
    /* Consistent padding */
}

.detail-section dl {
    /* Definition list inside cards */
    margin-bottom: 0;
}

.detail-section dt {
    /* Definition term */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-weight: 500;
    border-bottom: 1px dotted #eee;
}

.detail-section dd {
    /* Definition description */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px dotted #eee;
}

/* Remove border from last row */
.detail-section dl>*:last-child {
    border-bottom: none;
    padding-bottom: 0.75rem;
    /* Ensure last item has padding */
}

.detail-section dl>*:nth-last-child(2) {
    border-bottom: none;
    /* Remove border from second to last (the dt) */
}


/* Specimen Notes formatting */
.specimen-notes p:last-child {
    margin-bottom: 0;
}

.specimen-notes ul,
.specimen-notes ol {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}


/* --- Add/Update in style.css --- */

/* News Post Page Styles */
.news-post-section {
    background-color: #fff;
    /* White background for post page */
}

.post-content .post-meta {
    font-size: 0.9rem;
}

.post-content .post-meta span {
    display: inline-block;
}

.post-content .post-meta i {
    vertical-align: text-bottom;
}

.featured-image {
    /* border-radius removed globally */
    max-height: 450px;
    /* Limit image height */
    width: 100%;
    object-fit: cover;
    border: 1px solid #eee;
}

.post-body {
    font-size: 1.1rem;
    /* Slightly larger text for readability */
    color: #333;
}

/* Basic styling for content from WYSIWYG */
.post-body p {
    margin-bottom: 1.25rem;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    /* border-radius removed globally */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Sidebar Styles */
.sidebar-widget {
    /* Optional: Add background/border */
    /* background-color: #f8f9fa;
    padding: 1.5rem;
    border: 1px solid #eee; */
}

.sidebar-title {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--bs-primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.recent-posts-list li {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dotted #eee;
}

.recent-posts-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    font-weight: 500;
    color: #333;
    /* Dark color for links */
}

/* Sticky Sidebar (Optional) */
@media (min-width: 992px) {
    .sticky-sidebar-container {
        position: sticky;
        top: 120px;
        /* Adjust based on header height + desired offset */
        z-index: 1000;
    }
}


/* --- Add/Update in style.css --- */

/* News Listing Page Header */
.page-header.bg-light {
    /* Style for the light header */
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.news-search-form .form-control {
    border-right: none;
    /* Make search input blend into button */
}

.news-search-form .btn {
    border-top-left-radius: 0 !important;
    /* Ensure square corners */
    border-bottom-left-radius: 0 !important;
}

/* News Listing Card Styles */
.news-list-card {
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
    /* border-radius removed globally */
}

.news-list-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-list-img {
    display: block;
    width: 100%;
    height: 100%;
    /* Fill the column height */
    min-height: 200px;
    /* Ensure a minimum height */
    object-fit: cover;
    /* border-radius removed globally */
}

.news-list-card .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-list-card .card-text i {
    vertical-align: text-bottom;
}


/* --- Add/Update in style.css --- */

/* Events Listing Page Header */
.events-search-form .form-control {
    border-right: none;
}

.events-search-form .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* Event List Item (Detailed Card) */
.event-list-item-detailed {
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
    /* border-radius removed */
}

.event-list-item-detailed:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-list-item-detailed .event-date {
    /* Styles are reused from homepage event list */
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary);
    text-align: center;
    padding: 0.75rem;
    /* Slightly larger padding */
    margin-right: 1.5rem;
    min-width: 70px;
    /* Slightly wider */
    /* border-radius removed */
}

.event-list-item-detailed .event-date .month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.1;
}

.event-list-item-detailed .event-date .day {
    display: block;
    font-size: 1.8rem;
    /* Larger day */
    font-weight: 700;
    line-height: 1.1;
}

.event-list-item-detailed .event-details h5 {
    margin-bottom: 0.25rem !important;
    font-weight: 600;
}

.event-list-item-detailed .event-details small i {
    opacity: 0.7;
}

/* --- Add/Update in style.css --- */

/* Event Detail Page Styles */
.event-details-section {
    background-color: #fff;
    /* White background for detail page */
}

.event-meta {
    /* border-radius removed globally */
    border-left: 5px solid var(--bs-primary) !important;
    /* Accent line */
}

.event-meta i {
    width: 1.5em;
    /* Align icons */
}

.event-body {
    font-size: 1.1rem;
    color: #333;
}

/* Basic styling for content from WYSIWYG (same as post.php) */
.event-body p {
    margin-bottom: 1.25rem;
}

.event-body h2,
.event-body h3,
.event-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-body ul,
.event-body ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.event-body img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Ensure sidebar styles from post.php apply */
/* .sidebar-widget { ... } */
/* .sidebar-title { ... } */
/* .recent-posts-list li { ... } */
/* Reusing this class */
/* .sticky-sidebar-container { ... } */


/* --- Add/Update in style.css --- */

/* Partners Listing Page Styles */
.partners-listing {
    /* Optional: Add background color if needed */
    /* background-color: #f8f9fa; */
}

.partner-list-card {
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    /* border-radius removed globally */
    display: flex;
    /* Ensure content inside aligns */
    flex-direction: column;
}

.partner-list-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-primary);
}

.partner-link {
    text-decoration: none;
    color: inherit;
    /* Inherit text color */
    flex-grow: 1;
    /* Make link fill the card */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

.partner-logo-container {
    height: 100px;
    /* Fixed height for logo area */
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-list-logo {
    max-height: 80px;
    /* Limit logo height */
    max-width: 90%;
    /* Limit logo width */
    object-fit: contain;
}

.logo-placeholder i {
    opacity: 0.3;
}

.partner-list-name {
    font-weight: 600;
    color: #333;
}

/* --- Add/Update in style.css --- */

/* Contact Page Styles */
.contact-section {
    /* Optional: background-color: #fff; */
}

.contact-details i {
    width: 2em;
    /* Ensure icons align text nicely */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.contact-details span {
    display: inline-block;
}

.map-container {
    overflow: hidden;
    /* Prevent iframe overflow */
    /* border-radius removed globally */
    line-height: 0;
    /* Remove extra space below iframe */
}

.map-container iframe {
    display: block;
    /* Ensure no extra space */
}

.contact-form {
    /* Optional: Add background, padding handled by Bootstrap classes */
}

.social-icons-contact a {
    transition: color 0.2s ease;
}

/* --- Add/Update in style.css --- */

/* Visit Page Styles */
.visitor-info {
    background-color: #fff;
    /* White background for main content area */
}

.visitor-guidelines li {
    display: flex;
    align-items: flex-start;
    /* Align icon with first line of text */
}

.visitor-guidelines li i {
    margin-top: 0.2rem;
    /* Adjust icon vertical alignment */
}

.directions-map {
    /* Styles for the right column content */
}

.map-container-visit {
    line-height: 0;
    /* Remove extra space below map */
}

.map-container-visit iframe {
    display: block;
}

/* Optional Sticky Sidebar for Directions/Map */
@media (min-width: 992px) {
    .sticky-sidebar-container {
        /* Same class used on post.php */
        position: sticky;
        top: 120px;
        /* Adjust based on header height + desired offset */
        z-index: 1000;
    }
}

/* --- Add/Update in style.css --- */

/* About Page Styles */
.about-content h3 i {
    vertical-align: middle;
    /* Align icons nicely with heading text */
}

/* Team Section Styles */
.team-member-card {
    /* border-radius removed globally */
    overflow: hidden;
    /* Ensure image fits */
}

.team-member-photo {
    width: 100%;
    height: 100%;
    /* Make image fill its column height */
    object-fit: cover;
    /* Crop image nicely */
    min-height: 80px;
    /* Ensure a minimum height */
    max-height: 120px;
    object-position: top;
}

.team-member-card .card-body {
    /* Adjust padding if needed */
}

.team-member-card h6 {
    font-size: 1rem;
}


/* Re-use sticky sidebar styles if needed */
@media (min-width: 992px) {
    .sticky-sidebar-container {
        position: sticky;
        top: 120px;
        /* Adjust based on header height + desired offset */
        z-index: 1000;
    }
}


/* --- Ensure other styles remain --- */
/* ... existing global, header, hero, index sections, footer styles ... */

/* --- Footer Styles --- */
footer {
    /* background: url('../images/maubg.jpg') repeat center center;
    background-size: 50px 20px; */
}

footer .hover-white:hover {
    color: #fff !important;
}