/* ------------------------------------------------------------------- */
/* 1. ROOT VARIABLES & RESET                                           */
/* ------------------------------------------------------------------- */
:root {
    --primary-blue: #0e2f74;
    --primary-blue-dark: #0a2560;
    --accent-orange: #f56c0a;
    --accent-orange-dark: #d85c09;
    --text-main: #000000;
    --text-muted: #6c757d;
    --text-light: #cccccc;
    --text-grey: #999999;
    --bg-light: #f7f7f7;
    --white: #ffffff;
    --footer-bg: #0e1e3f;
    --footer-bottom-bg: #0a1733;
    --footer-border: #1a335f;
    --border-divider: #dddddd;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}


body p {
	text-align: justify;
}
/* ------------------------------------------------------------------- */
/* 2. GLOBAL TYPOGRAPHY                                                */
/* ------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 40px;
}
h2,
.section-main-title {
    font-size: 32px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}

p {
    margin-bottom: 1.5rem;
}

ul,
ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
ul li,
ol li {
    font-size: 14px;
    margin-bottom: 8px;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--accent-orange);
}

.section-sub-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
	line-height: 1.7;
}

/* ------------------------------------------------------------------- */
/* 3. BUTTONS                                                          */
/* ------------------------------------------------------------------- */
.btn-conference {
    display: inline-block;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary-solid {
    background: var(--accent-orange);
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(245, 108, 10, 0.3);
}

.btn-secondary-solid {
    background: var(--primary-blue);
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(14, 47, 116, 0.3);
}

.btn-primary-outline {
    background: transparent;
    border-color: var(--accent-orange);
    color: var(--accent-orange) !important;
}

.btn-secondary-outline {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue) !important;
}

.btn-conference:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary-solid:hover,
.btn-primary-outline:hover {
    background: var(--accent-orange-dark);
    color: var(--white) !important;
}
.btn-secondary-solid:hover,
.btn-secondary-outline:hover {
    background: var(--primary-blue-dark);
    color: var(--white) !important;
}

/* ------------------------------------------------------------------- */
/* 4. LAYOUT COMPONENTS                                                */
/* ------------------------------------------------------------------- */
.main-sections section {
    padding: 80px 0;
}
.main-sections section:nth-child(odd) {
    background: var(--white);
}
.main-sections section:nth-child(even) {
    background: var(--bg-light);
}

.member-profile-article {
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.profile-sidebar-wrapper {
    position: sticky;
    top: 30px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.profile-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 25px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ------------------------------------------------------------------- */
/* 5. COMMITTEE GRID                                                   */
/* ------------------------------------------------------------------- */
.committee-section {
    padding: 80px 0;
    background-color: #fcfcfd;
}

.member-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-top: 50px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.member-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 47, 116, 0.1);
}

.member-thumb {
    position: relative;
    margin-top: -70px;
    margin-bottom: 20px;
    display: inline-block;
}

.member-img-fluid {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 25px;
    border: 5px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.country-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(245, 108, 10, 0.3);
}

.member-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}
.member-role {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.profile-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}
.profile-link i {
    margin-left: 5px;
    transition: 0.3s;
}
.profile-link:hover {
    color: var(--accent-orange);
}
.profile-link:hover i {
    transform: translateX(5px);
}







/* ------------------------------------------------------------------- */
/* 2. TOP HEADER STYLES                                                */
/* ------------------------------------------------------------------- */
.top-header {
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 14px;
}

.header-contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
	font-weight: 600;
}

.header-contact-info a:hover {
    color: var(--accent-orange);
}

.header-contact-info i {
    color: var(--accent-orange);
}

.header-social-icons a {
    color: var(--white);
    text-decoration: none;
    margin-left: 12px;
    font-size: 1em;
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
}

.header-social-icons a:hover {
    color: var(--accent-orange);
    opacity: 1;
}

/* ------------------------------------------------------------------- */
/* 3. MAIN HEADER & NAVIGATION                                         */
/* ------------------------------------------------------------------- */
.site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.navbar {
    background-color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: padding 0.3s ease-in-out;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    max-width: 200px;
    transition: max-width 0.3s ease-in-out;
}

.navbar-toggler {
    border-color: var(--primary-blue);
}

.navbar-nav li {
    margin-bottom: 0;
}

.navbar-nav .nav-item .nav-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    padding-left: 6px !important;
    padding-right: 6px !important;
    transition: color 0.3s;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--accent-orange);
}

/* Dropdown Menu */
header.site-header .navbar-nav .dropdown-menu {
    padding: 0;
}

.dropdown-menu[data-bs-popper] {
    margin-top: 23px;
}

a.dropdown-item {
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-divider);
    color: var(--primary-blue);
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--white);
    background-color: var(--primary-blue);
}

/* ------------------------------------------------------------------- */
/* 4. STICKY HEADER STATE                                              */
/* ------------------------------------------------------------------- */
.logged-in.admin-bar .site-header.is-sticky {
    top: 32px;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

.site-header.is-sticky .navbar-brand img {
    max-width: 180px;
}

/* ------------------------------------------------------------------- */
/* 5. NAVIGATION BUTTONS (DESKTOP)                                     */
/* ------------------------------------------------------------------- */
@media (min-width: 768px) {
    .navbar-nav {
        align-items: center;
    }

    .menubtnreg .nav-link {
        background-color: var(--accent-orange);
        color: var(--white) !important;
        border: 2px solid var(--accent-orange);
        border-radius: 6px;
        padding: 8px 18px !important;
        margin-left: 15px;
        font-weight: 700 !important;
        text-transform: uppercase;
        font-size: 12px !important;
        transition: all 0.3s ease !important;
    }

    .menubtnreg .nav-link:hover {
        background-color: var(--accent-orange-dark);
        border-color: var(--accent-orange-dark);
        transform: translateY(-1px);
    }

    .menubtnabstract .nav-link {
        background-color: transparent;
        color: var(--primary-blue) !important;
        border: 2px solid var(--primary-blue);
        border-radius: 6px;
        padding: 8px 18px !important;
        margin-left: 10px;
        font-weight: 700 !important;
        text-transform: uppercase;
        font-size: 12px !important;
        transition: all 0.3s ease !important;
    }

    .menubtnabstract .nav-link:hover {
        background-color: var(--primary-blue);
        color: var(--white) !important;
    }
	.navbar-nav .menubtnabstract .nav-link,
	.navbar-nav .menubtnreg .nav-link {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}







/* ------------------------------------------------------------------- */
/* 6. FOOTER STYLES                                                    */
/* ------------------------------------------------------------------- */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding-top: 80px;
}
.footer-col {
    padding: 0 15px;
}
.footer-title {
    color: var(--accent-orange);
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-blue);
    margin-top: 10px;
    border-radius: 3px;
}

.footer-text,
.footer-small-text,
.address-text {
    font-size: 14px;
    line-height: 1.6;
}
.logo-accreditation-wrapper {
    display: flex;
    column-gap: 15px;
}
.logo-item img {
    background: var(--white);
    padding: 5px;
    border-radius: 6px;
    max-width: 70px;
}

.address-type {
    font-size: 1em;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.footer-contact-item {
    font-size: 0.95em;
    margin-bottom: 10px;
}
.footer-contact-item a {
    color: var(--text-light);
    font-size: 14px;
}
.footer-contact-item a:hover {
    color: var(--accent-orange);
}
.footer-contact-item i {
    color: var(--accent-orange);
    font-size: 1.1em;
}

.payment-secure-logos {
    max-width: 245px;
    padding: 2px 5px;
    background: var(--white);
    border-radius: 6px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links li a,
.footer-link {
    color: var(--text-light);
    font-size: 14px;
    line-height: 2;
    margin-bottom: 12px;
    display: inline-block;
}
.footer-links li a:hover,
.footer-link:hover {
    color: var(--accent-orange);
}

.social-icon-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-blue-dark);
    color: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}
.social-icon-link:hover {
    background-color: var(--accent-orange);
    color: var(--footer-bg);
}

/* ------------------------------------------------------------------- */
/* 7. NEWSLETTER (CF7)                                                 */
/* ------------------------------------------------------------------- */
.newsletter-form-wrapper {
    max-width: 300px;
}
.newsletter-form-wrapper .subscribe-box {
    display: flex;
    align-items: stretch;
    margin-bottom: 10px;
    position: relative;
}
.newsletter-form-wrapper .subscribe-box p,
.newsletter-form-wrapper .subscribe-box .wpcf7-form-control-wrap {
    display: flex;
    flex-grow: 1;
    margin: 0;
}
.newsletter-form-wrapper .subscribe-box br {
    display: none;
}

.newsletter-form-wrapper input[type="email"].wpcf7-text {
    width: 100% !important;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    color: var(--white);
    padding: 10px 15px;
    height: 45px;
    border-radius: 5px 0 0 5px !important;
    font-size: 14px;
    outline: none !important;
}

.newsletter-form-wrapper input.subscribe-btn {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    font-weight: 600;
    height: 45px;
    padding: 0 15px;
    border-radius: 0 5px 5px 0 !important;
    transition: 0.3s;
}
.newsletter-form-wrapper input.subscribe-btn:hover {
    background-color: var(--accent-orange-dark);
}

.newsletter-form-wrapper .cf7-consent-check {
    margin-top: 5px;
    font-size: 14px;
}
.newsletter-form-wrapper .cf7-consent-check .wpcf7-list-item-label {
    color: var(--text-light);
}
.newsletter-form-wrapper .cf7-consent-check a {
    color: var(--white);
    text-decoration: underline;
}

.wpcf7-spinner {
    position: absolute;
    bottom: 10px;
    right: 0;
}
.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -70px;
    font-size: 14px;
}

/* ------------------------------------------------------------------- */
/* 8. FOOTER BOTTOM                                                    */
/* ------------------------------------------------------------------- */
.footer-bottom-bar {
    border-top: 1px solid var(--footer-border);
    background-color: var(--footer-bottom-bg);
    margin-top: 40px;
}
.copyright-text {
    color: var(--text-grey);
}
.legal-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}
.legal-links li {
    margin-left: 15px;
    margin-bottom: 0;
}
.legal-links li a {
    color: var(--text-grey);
    transition: 0.3s;
}
.legal-links li a:hover {
    color: var(--white);
    text-decoration: underline;
}


/* ------------------------------------------------------------------- */
/* 9. VENUE PAGE AND SECTION                                       * /
/* ------------------------------------------------------------------- */

/* --- Venue Global Styles --- */
.venue-img-fixed {
    padding: 20px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    padding-top: 30px;
}

/* Amenities Grid Layout */
.amenities-grid-global {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/* Individual Amenity Card */
.amenity-card-global {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ebeef3;
    transition: all 0.3s ease;
}

.amenity-card-global:hover {
    border-color: #f39c12;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.amenity-icon-box-global {
    width: 32px;
    height: 32px;
    background: #fff4e5; /* Light orange tint */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.amenity-icon-box-global i {
    color: #f39c12;
    font-size: 14px;
}

.amenity-label-global {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.venue-home-section .slick-dots {
    margin: 10px;
}

.google-map-embed iframe {
    height: 260px;
    width: 100%;
}

/* Gallery Hover Effects */
.gallery-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}
.gallery-thumb { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 23, 51, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.gallery-item-wrapper:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 24px; }

@media (max-width: 768px) {
    .amenities-grid-global { grid-template-columns: 1fr; }
}


/* ------------------------------------------------------------------- */
/* 9. ABSTRACR FORM                                                    */
/* ------------------------------------------------------------------- */

/* Container Styling */
.abstract-form-container {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #0e2f74; /* Matches your primary blue */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Label Styling */
.abstract-form-container .form-label {
    font-size: 13px;
    font-weight: 700;
    color: #0e2f74;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input & Select Styling */
.abstract-form-container .form-control, 
.abstract-form-container .form-select {
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    font-size: 15px;
    border-radius: 6px;
}

.abstract-form-container .form-control:focus {
    border-color: #f56c0a; /* Your orange accent */
    box-shadow: 0 0 0 0.2rem rgba(245, 108, 10, 0.15);
}

/* File Upload Section */
.file-upload-box {
    background: #f8f9fa;
    padding: 15px;
    border: 2px dashed #cbd3da;
    border-radius: 8px;
    text-align: center;
}

.file-upload-box h6 {
    margin-bottom: 10px;
    font-weight: 700;
}

/* Submit Button */
.abstract-form-container .btn-primary {
    background-color: #f56c0a !important;
    border: none !important;
    font-weight: 700;
    padding: 12px;
    transition: 0.3s;
}

.abstract-form-container .btn-primary:hover {
    background-color: #0e2f74 !important;
    transform: translateY(-2px);
}

.abstract-form-container p {
    margin-bottom: 0;
}






/* Conference */
	/* Grid Layout */
.conference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Card Styling */
.conference-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Image & Badge */
.conf-image-wrapper {
    position: relative;
    height: 220px;
}

.conf-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conf-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f56c0a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Card Body */
.conf-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.conf-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.conf-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.conf-title a:hover {
    color: #007bff;
}

.conf-theme {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

/* Meta Items */
.conf-meta {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.meta-item i {
    width: 20px;
    color: #f56c0a;
    margin-right: 10px;
}

.meta-item a {
    color: inherit;
    text-decoration: none;
}

/* Button */
.conf-footer {
    margin-top: 20px;
}

.conf-btn {
    display: inline-block;
    background: #f8f9fa;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.conf-btn:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}






.filter-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.btn-group-filter {
    display: inline-flex;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(14, 47, 116, 0.08);
    border: 1px solid #e1e8f0;
    gap: 5px;
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue, #0e2f74);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.filter-btn i {
    font-size: 16px;
    margin-right: 8px;
}

/* Hover State */
.filter-btn:hover {
    background: #f0f4f8;
    color: var(--accent-orange, #f56c0a);
}

/* Active State - Matching your Site Brand */
.filter-btn.active {
    background: var(--primary-blue, #0e2f74);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(14, 47, 116, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn-group-filter {
        border-radius: 15px;
        width: 100%;
        justify-content: center;
    }
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}













/* Grid Container */
.past-conference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Card Differentiation */
.past-conf-card {
    background: #fcfcfc;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-divider);
    transition: all 0.3s ease;
}

/* Image Grayscale Effect */
.past-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.past-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Makes it look like the past */
    transition: filter 0.5s ease;
}

.past-conf-card:hover .past-image-wrapper img {
    filter: grayscale(0%); /* Brings color back on hover */
}

/* Badge & Overlay */
.past-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--footer-bg); /* Darker blue badge */
    color: var(--white);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.past-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Content Area */
.past-body {
    padding: 20px;
}

.past-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.past-title a {
    color: var(--primary-blue-dark);
    text-decoration: none;
}

.past-meta-item {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.past-meta-item i {
    color: var(--text-grey);
    margin-right: 8px;
    width: 15px;
}

/* Muted Button */
.past-btn {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border 0.3s;
}

.past-btn:hover {
    border-bottom: 2px solid var(--accent-orange);
}


/* ------------------------------------------------------------------- */
/* 9. MOBILE RESPONSIVENESS                                            */
/* ------------------------------------------------------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    h2,
    .section-main-title {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    section {
        padding: 50px 0;
    }
    .profile-sidebar-wrapper {
        position: static;
        margin-bottom: 30px;
    }
    .legal-links {
        justify-content: center;
        margin-top: 10px;
    }
}

.back-to-top-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white) !important;
    border-radius: 50%;
    z-index: 1000;
    display: none;
    text-align: center;
    line-height: 45px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.back-to-top-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}




.google-map-embed iframe {
    height: 260px;
}
.social-icons a.social-icon-link {
    margin-right: 5px;
}
@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    .navbar-brand img {
        max-width: 180px;
    }
    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }
	.footer-bottom-bar {
		padding-bottom: 150px !important;
	}
	.main-footer {
    	background-color: var(--footer-bg);
    	color: var(--text-light);
    	padding-top: 50px;
    }
    .footer-bottom-bar {
    	margin-top: 0;
    }
    .copyright-text {
    	text-align: center;
    	margin-top: 10px;
    }
}

