﻿
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --bg-pearl: #fdfbf7;
    --royal-blue: #1a365d;
    --classic-gold: #b45309;
    --text-dark: #2d3748;
    --text-muted: #4a5568;
    --border-light: #e2e8f0;
}

body {
    background-color: var(--bg-pearl);
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: var(--royal-blue);
    color: #ffffff;
}


::-moz-selection {
    background-color: #0d6efd;
    color: #ffffff;
}
h1, h2, h3, h4, .serif-text {
    font-family: 'Playfair Display', serif;
        color: var(--classic-gold);
    margin-top: 0;
}
.text-primary {
    font-family: 'Playfair Display', serif !important!;
    color: var(--royal-blue)!important;
    margin-top: 0!important;
}
.text-a {
    color: #fff !important;
    margin-top: 0 !important;
    text-decoration:none !important;
}
.text-a:hover {
    color: var(--classic-gold) !important;
    
}
.internal-page-content {
    padding: 60px 0;
    min-height: 50vh;
}

.text-truncate-lines {
    display: -webkit-box;
    -webkit-line-clamp: 10; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-gold-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--classic-gold);
    color: #ffffff !important;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--classic-gold);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(180, 83, 9, 0.2);
}

    .btn-gold-solid:hover {
        background-color: #924005;
        border-color: #924005;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(180, 83, 9, 0.3);
    }

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--classic-gold) !important;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--classic-gold);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-gold-outline:hover {
        background-color: var(--classic-gold);
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(180, 83, 9, 0.2);
    }


.top-action-bar {
    background-color: var(--royal-blue);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

    .top-links a:hover {
        color: var(--classic-gold);
    }

.top-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 12px;
}

.lang-text-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

    .lang-text-btn:hover {
        color: var(--classic-gold);
    }

.main-clean-nav {
    background-color: var(--bg-pearl);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 12px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    width: auto;
}

.brand-title {
    color: var(--royal-blue);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
}

.clean-nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

    .clean-nav-links > li > a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.2s ease;
        padding: 10px 0;
    }

        .clean-nav-links > li > a:hover {
            color: var(--classic-gold);
        }

.drop-arrow {
    font-size: 0.6rem;
    font-style: normal;
    margin-left: 4px;
    color: var(--text-muted);
}

.has-clean-dropdown {
    position: relative;
}

.clean-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-top: 3px solid var(--classic-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-clean-dropdown:hover .clean-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.clean-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

    .clean-dropdown li a:hover {
        background: var(--bg-pearl);
        color: var(--classic-gold);
    }

.clean-hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

    .clean-hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--royal-blue);
        border-radius: 2px;
    }

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #ffffff;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.drawer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .drawer-links > li > a {
        display: block;
        padding: 15px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid var(--border-light);
    }

.drawer-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-pearl);
}

    .drawer-dropdown li a {
        display: block;
        padding: 12px 20px 12px 40px;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--border-light);
    }


.page-header-banner {
    background-color: var(--royal-blue);
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid var(--classic-gold);
}
.dynamic-img-container {
    width: 100%;
    margin-bottom: 40px;
    text-align: center; 
}

   
    .dynamic-img-container img {
        max-width: 100%;
        max-height: 500px; 
        width: auto;
        height: auto;
        border-radius: 8px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        display: inline-block;
    }
.premium-article-media {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.media-blur-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}


    .media-blur-overlay img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 6px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }
    .page-header-banner h1 {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }
@media (max-width: 768px) {
    .page-header-banner h1 {
        font-size: 1.7rem; 
    }
}


@media (max-width: 576px) {
    .page-header-banner h1 {
        font-size: 1.5rem;
    }
}
.breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    margin: 0;
}

    .breadcrumb a {
        color: var(--classic-gold);
        text-decoration: none;
    }

.mission-section {
    padding: 80px 0;
    background-color: var(--bg-pearl);
}

.mission-header {
    margin-bottom: 50px;
}

.mission-subtitle {
    color: var(--classic-gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.mission-title {
    font-size: 2.8rem;
    color: var(--royal-blue);
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.mission-item {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--classic-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: left;
}

    .mission-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(26, 54, 93, 0.08);
        border-top-color: var(--royal-blue);
    }

.mission-icon {
    margin-bottom: 25px;
}

    .mission-icon svg {
        width: 48px;
        height: 48px;
        color: var(--classic-gold);
        transition: transform 0.3s ease;
    }

.mission-item:hover .mission-icon svg {
    transform: scale(1.1);
}

.mission-item h3 {
    font-size: 1.4rem;
    color: var(--royal-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.floated-img-left {
    float: left;
    width: 40%; 
    height: 400px;
    object-fit: cover;
    margin: 0 40px 20px 0;
    border: 3px solid var(--classic-gold);
}

.floated-img-right {
    float: right;
    width: 40%; 
    height: 400px;
    object-fit: cover;
    margin: 0 0 20px 40px; 
    border: 3px solid var(--royal-blue);
}

@media (max-width: 991px) {
    .floated-img-left, .floated-img-right {
        float: none;
        width: 100%;
        height: auto;
        max-height: 400px;
        margin: 0 0 30px 0;
        display: block;
    }
}

.about-legacy-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
}

.about-legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.legacy-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.legacy-image-frame {
    position: relative;
    z-index: 2;
}

    .legacy-image-frame img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: block;
    }

    .legacy-image-frame::before {
        content: '';
        position: absolute;
        top: -25px;
        left: -25px;
        width: 100%;
        height: 100%;
        border: 3px solid var(--classic-gold);
        z-index: -1;
        border-radius: 4px;
    }

.legacy-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    background-color: var(--royal-blue);
    color: var(--bg-pearl);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
    z-index: 3;
    border-bottom: 4px solid var(--classic-gold);
}

.badge-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.badge-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
}

.section-label {
    display: inline-block;
    color: var(--classic-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--classic-gold);
    padding-bottom: 5px;
}

.legacy-title {
    font-size: 2.6rem;
    color: var(--royal-blue);
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.lead-paragraph {
    font-size: 1.15rem;
    color: var(--royal-blue);
    font-weight: 600;
    line-height: 1.7;
    border-left: 4px solid var(--classic-gold);
    padding-left: 20px;
    margin-bottom: 25px;
}

.standard-paragraphs p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}


.what-we-do-dark {
    padding: 100px 0;
    background-color: var(--royal-blue);
    color: var(--bg-pearl);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.wwd-video-frame {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 4px;
}

    .wwd-video-frame img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 2px;
        filter: brightness(0.85);
        transition: filter 0.3s ease;
    }

    .wwd-video-frame:hover img {
        filter: brightness(0.6);
    }

.legacy-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--classic-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 0 10px rgba(180, 83, 9, 0.3);
    transition: all 0.3s ease;
}

    .legacy-play-btn svg {
        width: 35px;
        height: 35px;
        margin-left: 5px;
    }

    .legacy-play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 15px rgba(180, 83, 9, 0.4);
    }

.wwd-subtitle {
    color: var(--classic-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.wwd-title {
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 40px;
}

.wwd-activity-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.activity-block {
    border-left: 3px solid var(--classic-gold);
    padding-left: 20px;
    transition: transform 0.3s ease;
}

    .activity-block:hover {
        transform: translateX(10px);
    }

    .activity-block h4 {
        color: var(--classic-gold);
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .activity-block p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }


.gallery-legacy-section {
    padding: 100px 0;
    background-color: var(--bg-pearl);
}

.gallery-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.gallery-subtitle {
    color: var(--classic-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.gallery-title {
    color: var(--royal-blue);
    font-size: 2.6rem;
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
}

.legacy-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--royal-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.large-feature {
    grid-column: span 6;
    grid-row: span 2;
}

.small-feature {
    grid-column: span 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background-color: rgba(26, 54, 93, 0.6);
    border: 2px solid var(--classic-gold);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    pointer-events: none;
}

.zoom-icon {
    color: var(--classic-gold);
    font-size: 3rem;
    font-weight: 300;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}


.testimonial-legacy-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonial-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background-color: var(--royal-blue);
    z-index: 1;
}

.testimonial-header {
    margin-bottom: 60px;
}

.testi-subtitle {
    color: var(--classic-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.testi-title {
    color: #ffffff;
    font-size: 2.6rem;
    margin: 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 4px solid var(--classic-gold);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .testi-card:hover {
        transform: translateY(-5px);
    }

.offset-card {
    transform: translateY(40px);
}

    .offset-card:hover {
        transform: translateY(35px);
    }

.quote-mark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--border-light);
    opacity: 0.5;
    user-select: none;
}

.testi-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

    .testi-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

.author-info h4 {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--royal-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.author-info span {
    color: var(--classic-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.team-legacy-section {
    padding: 100px 0;
    background-color: var(--bg-pearl);
    border-top: 1px solid var(--border-light);
}

.team-header {
    margin-bottom: 40px;
}

.team-subtitle {
    color: var(--classic-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.team-title {
    color: var(--royal-blue);
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.legacy-divider {
    width: 60px;
    height: 3px;
    background-color: var(--classic-gold);
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(26, 54, 93, 0.1);
    }

.team-image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

    .team-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        filter: grayscale(20%);
    }

.team-card:hover .team-image-box img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    transition: bottom 0.4s ease;
}

.team-card:hover .team-overlay {
    bottom: 0;
}

.team-social {
    display: flex;
    gap: 15px;
}

    .team-social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: var(--classic-gold);
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2rem;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

        .team-social a:hover {
            background-color: white;
            color: var(--classic-gold);
            transform: scale(1.1);
        }

.team-info {
    padding: 25px 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
    border-top: 3px solid var(--classic-gold);
}

    .team-info h4 {
        font-family: 'Playfair Display', serif;
        color: var(--royal-blue);
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .team-info span {
        font-family: 'Source Sans Pro', sans-serif;
        color: var(--text-muted);
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.legacy-blog-section {
    padding: 80px 0 100px;
    background-color: var(--bg-pearl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-journal-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .blog-journal-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(26, 54, 93, 0.08);
    }

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.blog-journal-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px 25px;
    position: relative;
    flex-grow: 1;
}

.blog-date-ribbon {
    position: absolute;
    top: -30px;
    right: 25px;
    background-color: var(--classic-gold);
    color: #ffffff;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(180, 83, 9, 0.3);
    border-radius: 2px;
}

    .blog-date-ribbon .day {
        display: block;
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1;
        font-family: 'Playfair Display', serif;
    }

    .blog-date-ribbon .month {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 3px;
    }

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 0;
}

    .blog-content h3 a {
        text-decoration: none;
        color: var(--royal-blue);
        transition: color 0.3s ease;
    }

        .blog-content h3 a:hover {
            color: var(--classic-gold);
        }

.legacy-subscribe-section {
    padding-bottom: 80px;
    background-color: var(--bg-pearl);
}

.subscribe-premium-box {
    background-color: var(--royal-blue);
    border: 4px solid var(--classic-gold);
    border-radius: 6px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.subscribe-text-col {
    flex: 1;
}

    .subscribe-text-col h2 {
        color: #ffffff;
        font-size: 2.2rem;
        margin: 0;
        line-height: 1.3;
    }

.subscribe-form-col {
    flex: 1;
    max-width: 500px;
}

.legacy-form-group {
    display: flex;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.legacy-email-input {
    flex-grow: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
}

.legacy-submit-btn {
    background-color: var(--classic-gold);
    color: #ffffff;
    border: none;
    padding: 0 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .legacy-submit-btn:hover {
        background-color: #924005;
    }

.site-footer {
    background-color: var(--royal-blue);
    color: var(--bg-pearl);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h4 {
    color: var(--classic-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col p, .footer-col ul {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.8;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul a {
        color: #e2e8f0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-col ul a:hover {
            color: var(--classic-gold);
        }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-top: 20px;
}


@media (max-width: 1024px) {
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
    }

    .clean-nav-links {
        display: none;
    }

    .clean-hamburger {
        display: flex;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .brand-logo {
        height: 45px;
    }
}

@media (max-width: 992px) {
    .about-legacy-grid, .what-we-do-grid, .testi-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .legacy-image-wrapper {
        padding-left: 15px;
        max-width: 600px;
        margin: 0 auto;
    }

    .legacy-image-frame::before {
        top: -15px;
        left: -15px;
    }

    .legacy-badge {
        right: 10px;
        bottom: -20px;
        padding: 15px 20px;
    }

    .legacy-title, .wwd-title {
        font-size: 2.2rem;
    }

    .wwd-media-column {
        order: -1;
    }

    .gallery-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .legacy-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .large-feature {
        grid-column: span 2;
        grid-row: span 2;
    }

    .small-feature {
        grid-column: span 1;
    }

    .offset-card {
        transform: translateY(0);
    }

        .offset-card:hover {
            transform: translateY(-5px);
        }

    .testimonial-bg-split {
        height: 300px;
    }

    .subscribe-premium-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .subscribe-text-col h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mission-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .legacy-gallery-grid {
        grid-template-columns: 1fr;
    }

    .large-feature, .small-feature {
        grid-column: span 1;
        grid-row: span 1;
    }

    .legacy-form-group {
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
        gap: 15px;
    }

    .legacy-email-input, .legacy-submit-btn {
        border-radius: 4px;
        width: 100%;
    }

    .legacy-submit-btn {
        padding: 15px;
    }
}

.suggestion-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.suggestion-text-side {
    padding-right: 20px;
}

.legacy-contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.08);
    border-top: 4px solid var(--classic-gold);
}

.form-row {
    display: flex;
    gap: 20px;
}

.half-width {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        color: var(--royal-blue);
        font-size: 0.9rem;
        margin-bottom: 8px;
    }


.legacy-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: var(--bg-pearl);
}

    .legacy-input:focus {
        outline: none;
        border-color: var(--classic-gold);
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
    }


.custom-file-upload {
    display: flex;
    align-items: center;
    border: 1px dashed var(--border-light);
    padding: 10px;
    border-radius: 4px;
    background-color: var(--bg-pearl);
}

.file-hidden {
    display: none; 
}


.comments-list-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
}

.comments-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-height: 520px; 
    overflow-y: auto;
    padding-right: 15px;
}
    .comments-wrapper::-webkit-scrollbar {
        width: 6px;
    }

   
    .comments-wrapper::-webkit-scrollbar-track {
        background: var(--border-light, #e2e8f0);
        border-radius: 10px;
    }

    .comments-wrapper::-webkit-scrollbar-thumb {
        background: var(--classic-gold, #b45309);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

        .comments-wrapper::-webkit-scrollbar-thumb:hover {
            background: var(--royal-blue, #1a365d);
        }

.legacy-comment-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-pearl);
    padding: 25px;
    border-radius: 6px;
    border-left: 3px solid var(--classic-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}

    .legacy-comment-card:hover {
        transform: translateX(5px);
    }

.comment-avatar img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-body {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

    .comment-header h4 {
        margin: 0;
        font-family: 'Source Sans Pro', sans-serif;
        color: var(--royal-blue);
        font-size: 1.1rem;
        font-weight: 700;
    }

.comment-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 15px 0;
}


.view-attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--classic-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    background-color: rgba(180, 83, 9, 0.05);
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

    .view-attachment-link:hover {
        background-color: rgba(180, 83, 9, 0.15);
    }


@media (max-width: 768px) {
    .suggestion-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .legacy-comment-card {
        flex-direction: column;
        gap: 15px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.directory-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

    .directory-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(26, 54, 93, 0.08);
        border-color: var(--classic-gold);
    }


.directory-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 25px auto 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.past-member-img {
    filter: grayscale(80%);
    transition: filter 0.3s ease;
}

.directory-card:hover .past-member-img {
    filter: grayscale(0%);
}

.directory-info {
    padding: 0 20px 25px;
}

    .directory-info h4 {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 1.2rem;
        color: var(--royal-blue);
        margin-bottom: 8px;
        font-weight: 700;
    }


.profession-badge {
    display: inline-block;
    background-color: var(--bg-pearl);
    color: var(--classic-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--classic-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}


.tenure-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-style: italic;
}

.ebook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
}

.ebook-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

    .ebook-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
        border-top: 3px solid var(--classic-gold);
    }


.ebook-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4; 
    overflow: hidden;
    background-color: var(--bg-pearl);
}

    .ebook-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.ebook-card:hover .ebook-cover img {
    transform: scale(1.05);
}


.ebook-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
}


.ebook-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--classic-gold);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(180, 83, 9, 0.3);
}


.ebook-info {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ebook-title {
    font-size: 1.3rem;
    color: var(--royal-blue);
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 700;
}

.ebook-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.ebook-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-light);
}

.btn-read-online {
    flex: 1;
    text-align: center;
    background-color: var(--bg-pearl);
    color: var(--royal-blue);
    border: 1px solid var(--border-light);
    padding: 8px 0;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .btn-read-online:hover {
        background-color: var(--royal-blue);
        color: #ffffff;
        border-color: var(--royal-blue);
    }

.btn-download-pdf {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    background-color: var(--classic-gold);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

    .btn-download-pdf:hover {
        background-color: #924005;
    }

.epaper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e5e7eb; 
    z-index: 10000;
    display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .epaper-modal.active {
        display: flex;
        opacity: 1;
    }


.epaper-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #4b5563;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

    .epaper-close:hover {
        color: var(--classic-gold);
        transform: scale(1.1);
    }


.epaper-spread {
    display: flex;
    height: 85vh; 
    max-width: 90vw;
    background-color: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2); 
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}


.epaper-page {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}


.left-page {
    border-right: 1px solid #d1d5db;
    box-shadow: inset -5px 0 15px rgba(0,0,0,0.05);
}

.right-page {
    box-shadow: inset 5px 0 15px rgba(0,0,0,0.05); 
}

.epaper-page img {
    height: 100%;
    width: auto;
    max-width: 45vw; 
    object-fit: contain;
    background-color: #ffffff;
}

.epaper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: rgba(26, 54, 93, 0.4); 
    cursor: pointer;
    user-select: none;
    padding: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .epaper-arrow:hover {
        color: var(--royal-blue);
        transform: translateY(-50%) scale(1.1);
    }

.epaper-prev {
    left: 30px;
}

.epaper-next {
    right: 30px;
}

.epaper-toolbar {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--royal-blue);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
    border: 2px solid var(--classic-gold);
}


@media (max-width: 768px) {
    .epaper-spread {
        max-width: 95vw;
        height: 75vh;
        border-radius: 2px;
    }

    .epaper-page img {
        max-width: 95vw; 
    }

    .left-page {
        border-right: none;
        box-shadow: none;
    }

    .epaper-arrow {
        font-size: 40px;
        padding: 10px;
        background: rgba(255,255,255,0.7); 
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .epaper-prev {
        left: 10px;
    }

    .epaper-next {
        right: 10px;
    }

    .epaper-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}

.featured-article {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.05);
    border-left: 5px solid var(--classic-gold);
}

.featured-article-img {
    flex: 1;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

    .featured-article-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.featured-article:hover .featured-article-img img {
    transform: scale(1.05);
}

.featured-article-content {
    flex: 1.2;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta-top {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: 600;
}

.meta-dot {
    color: var(--classic-gold);
    font-size: 1.2rem;
    line-height: 0;
}

.featured-article-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

    .featured-article-content h2 a {
        text-decoration: none;
        color: var(--royal-blue);
        transition: color 0.2s ease;
    }

        .featured-article-content h2 a:hover {
            color: var(--classic-gold);
        }

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

    .author-info img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
    }

.author-details h5 {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--royal-blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.author-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}


@media (max-width: 992px) {
    .featured-article {
        flex-direction: column;
    }

    .featured-article-content {
        padding: 30px 25px;
    }

        .featured-article-content h2 {
            font-size: 1.8rem;
        }
}

.clean-nav-links > li > a.active-link {
    color: var(--classic-gold) !important;
    font-weight: 700;
    position: relative;
}


    .clean-nav-links > li > a.active-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--classic-gold);
        border-radius: 2px;
    }

.has-clean-dropdown.active-link > a {
    color: var(--classic-gold) !important;
    font-weight: 700;
}

.clean-dropdown li a.active-link {
    background-color: var(--bg-pearl);
    color: var(--classic-gold) !important;
    font-weight: 700;
    border-left: 3px solid var(--classic-gold);
    padding-left: 12px;
}

    .clean-dropdown li a.active-link::after {
        display: none;
    }


========================================= */
.site-footer {
    background-color: var(--royal-blue);
    color: var(--bg-pearl);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}


.footer-brand h3 {
    color: var(--classic-gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}


.footer-links-col h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}


    .footer-links-col h4::after,
    .footer-contact h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 30px;
        height: 2px;
        background-color: var(--classic-gold);
    }


.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links-list li {
        margin-bottom: 15px;
    }

    .footer-links-list a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }


        .footer-links-list a::before {
            content: '—';
            margin-right: 10px;
            color: var(--classic-gold);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-links-list a:hover {
            color: var(--classic-gold);
        }

            .footer-links-list a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact-item svg {
        width: 20px;
        height: 20px;
        color: var(--classic-gold);
        flex-shrink: 0; 
        margin-top: 3px;
    }

    .contact-item p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }


.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    padding-top: 10px;
}

    .footer-bottom p {
        margin: 0;
        letter-spacing: 0.5px;
    }
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .share-btn:hover {
        transform: translateY(-5px);
        color: #fff;
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

.btn-whatsapp {
    background-color: #25D366;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-twitter {
    background-color: #000000;
}

.btn-linkedin {
    background-color: #0A66C2;
}

.btn-copy {
    background-color: #6c757d;
    cursor: pointer;
    border: none;
}


.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.related-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    align-items: center;
}

    .related-card:hover {
        transform: translateX(5px);
        color: var(--royal-blue);
    }

.related-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}
.universal-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-pearl);
    color: var(--text-dark); 
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;

    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.12);
    border: 1px solid var(--border-light); 
    transition: bottom 0.6s ease-out, opacity 0.6s ease-out;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 300px;
    opacity: 0;
}

   
    .universal-toast.show {
        bottom: 40px;
        opacity: 1;
    }

    
    .universal-toast i {
        font-size: 1.4rem;
    }


.toast-success {
    border-left: 4px solid #10b981;
}

    .toast-success i {
        color: #10b981;
    }

.toast-error {
    border-left: 4px solid #ef4444;
}


    .toast-error i {
        color: #ef4444;
    }
.slider-image-container {
    width: 100%;
    height: 60vh;
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fdfbf7; 
}

.scroll-to-top {
    user-select: none;
    position: fixed;
    bottom: 80px;
    right: 30px;
    background-color: var(--classic-gold);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    transition: all 0.4s ease;
    z-index: 9999;
}

    .scroll-to-top:hover {
        transform: translateY(-10px);
        color: #fff;
    }


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

   
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-pearl);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

    
    .preloader-overlay.hidden {
        opacity: 0;
        visibility: hidden;
    }


.minimal-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(26, 54, 93, 0.1); 
    border-top: 3px solid var(--classic-gold); 
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.qr-code-wrapper {
    margin-top: 20px;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--classic-gold);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInQR 0.4s ease-in-out;
    max-width: 300px;
}

.qr-title {
    font-family: 'Playfair Display', serif;
    color: var(--royal-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.qr-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 15px;
}

.qr-helper {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes fadeInQR {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 54, 93, 0.7); 
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .custom-modal-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.custom-modal-box {
    background-color: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    border-top: 5px solid var(--classic-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    padding: 40px 30px;
    text-align: center;
}

.custom-modal-overlay.show .custom-modal-box {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

    .close-modal-btn:hover {
        color: var(--classic-gold);
    }

.qr-title {
    font-family: 'Playfair Display', serif;
    color: var(--royal-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.qr-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.qr-helper {
    color: var(--royal-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.qr-instruction {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.btn-view-qr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--classic-gold);
    border: 2px solid var(--classic-gold);
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap; 
    font-family: 'Source Sans Pro', sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    height: 42px;
}

    .btn-view-qr:hover {
        background-color: var(--classic-gold);
        color: #ffffff;
        box-shadow: 0 6px 15px rgba(180, 83, 9, 0.2);
        transform: translateY(-2px);
    }

    .btn-view-qr:active {
        transform: translateY(0);
    }


@media (max-width: 576px) {
    .form-group.half-width > div {
        flex-wrap: wrap; 
        gap: 10px;
    }

    .btn-view-qr {
        width: 100%; 
    }
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

    .btn-whatsapp:hover {
        background-color: #1ebd5a;
        border-color: #1ebd5a;
        color: white;
        box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
        transform: translateY(-2px);
    }

    .btn-whatsapp svg {
        margin-right: 8px;
    }
@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .suggestion-grid {
        gap: 20px;
    }

    .suggestion-text-side {
        padding-right: 0;
    }

    .legacy-contact-form {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
.folder-card {
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

    .folder-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(26, 54, 93, 0.1);
        border-color: var(--classic-gold);
    }

.folder-cover-wrapper {
    height: 200px;
    position: relative;
    background-color: var(--royal-blue);
}

.folder-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 54, 93, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.folder-card:hover .folder-overlay {
    background: rgba(26, 54, 93, 0.3);
}
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Slider Container */
.smooth-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

    /* Optional: Sides me slight fade effect dene ke liye */
    .smooth-slider-wrapper::before,
    .smooth-slider-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        width: 80px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .smooth-slider-wrapper::before {
        left: 0;
        background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
    }

    .smooth-slider-wrapper::after {
        right: 0;
        background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
    }


.smooth-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
   
    animation: continuousSlide 25s linear infinite;
}


 .smooth-slider-track:hover {
    animation-play-state: paused;
} 


.slider-slide {
    width: 450px; 
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

    .slider-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }


    .slider-slide:hover img {
        transform: scale(1.05);
    }

@keyframes continuousSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        
        transform: translateX(-1422px);
    }
}


@media (max-width: 768px) {
    @keyframes continuousSlide {
        0% {
            transform: translateX(0);
        }
       
        100% {
            transform: translateX(-912px);
        }
    }
}