:root {
    --primary-green: #014709;
    --brand-green-light: #509f1a;
    --accent-red: #b10000;
    --white: #FFFFFF;
    --grey: #1a1a1a;
    --text-dark: #2d3436;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-4 {
    font-family: 'Outfit', sans-serif;
}

/* Parallax Styles */
.parallax-section {
    background-image: url('assets/images/servicesSection.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    /* Increased for tiered header */
    padding-bottom: 80px;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: var(--white);
}

.text-brand-light-green {
    color: #8ae61c;
}

.z-2 {
    z-index: 2;
}

/* Custom Text and Background Utilities */
.text-brand-green {
    color: var(--primary-green) !important;
}

.bg-brand-green {
    background-color: var(--primary-green) !important;
}

/* Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}





/* Ensure elements are visible if animation fails or on mobile initial load */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Gallery Masonry Styles */
.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
    width: 100%;
    opacity: 1 !important;
    /* Ensure it's not hidden by container animation */
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 71, 9, 0.7);
    /* Pakistan Green with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}



/* Multi-Tiered Header Styles */
.header-tiered {
    background: transparent;
    transition: all 0.4s ease;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 !important;
}

/* 1. Top Bar */
.header-top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.social-links-top a {
    color: var(--text-dark);
    margin: 0 8px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-links-top a:hover {
    color: var(--primary-green);
}

.btn-download-sm {
    background-color: var(--accent-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-download-sm:hover {
    background-color: #8a0000;
    color: var(--white);
    transform: translateY(-1px);
}

/* 2. Main Nav Bar */
.header-nav-bar {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.brand-container {
    background: var(--white);
    padding: 8px 30px;
    margin-top: 0;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar-nav {
    align-items: center;
}

.header-nav-bar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 25px 15px !important;
}

.header-nav-bar .nav-link:hover,
.header-nav-bar .nav-link.active {
    color: var(--primary-green) !important;
}

.btn-nav-contact {
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50px;
    /* Modern pill shape */
    padding: 10px 25px;
    /* Better button proportions */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 71, 10, 0.2);
    align-self: center;
    /* Center vertically within the header tier */
}

.btn-nav-contact:hover {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 71, 10, 0.3);
}

/* 3. Ticker Bar */
.header-ticker-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 6px 0;
    font-size: 0.85rem;
    overflow: hidden;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 45s linear infinite;
    /* Slower speed */
}

.ticker-content span {
    font-weight: 500;
    padding-right: 50px;
    /* Space between items */
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Halfway for seamless double content */
}

/* Scrolled variations */
.header-tiered.scrolled .header-top-bar {
    height: 0;
    padding: 0 !important;
    overflow: hidden;
}

.header-tiered.scrolled .header-nav-bar {
    background-color: rgba(255, 255, 255, 0.98);
}

.header-tiered.scrolled .brand-container {
    padding: 5px 25px;
}

.header-tiered.scrolled .header-nav-bar .nav-link {
    padding: 15px 15px !important;
}

.header-tiered.scrolled .btn-nav-contact {
    padding: 8px 22px;
    font-size: 0.8rem;
}


/* Page Header / Banner */
/* Button Styles */
.btn-brand-primary {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(177, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-brand-primary:hover {
    background-color: #8a0000;
    border-color: #8a0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 0, 0, 0.4);
    color: var(--white);
}

/* Page Header / Banner Styles */
.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/servicesSection.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 350px;
    /* Slightly taller for better scale */
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding-top: 150px;
    /* Increased for Tiered Header visibility */
    color: var(--white);
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.issue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Modern Glassmorphism Overlay */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

/* Show overlay on hover */
.issue-card:hover .issue-overlay {
    opacity: 1;
}

.issue-content {
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--white);
    width: 100%;
}

.issue-card:hover .issue-content {
    transform: translateY(0);
}

.issue-content h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.issue-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
    color: #edf2f7;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-weight: 700;
}

/* Footer Styles */
.main-footer {
    background-color: var(--grey);
    border-top: 5px solid var(--accent-red);
}

.hover-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.hover-link:hover {
    color: #ffcccc !important;
    transform: translateX(-5px);
    /* Move left on hover since they are right aligned? Or maybe just padding */
    padding-right: 5px;
}

/* Previous Issues Section */
.previous-issues {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--grey);
    letter-spacing: -0.5px;
}

.issue-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    border-radius: 20px;
    max-width: 320px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.issue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.issue-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4.2;
}

.issue-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.issue-card:hover .issue-img-wrapper img {
    transform: scale(1.1);
}

/* Contact Page Styles */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
}

.contact-content {
    padding: 40px;
}

.contact-map-wrapper {
    height: 100%;
    min-height: 400px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-section-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-red);
}

.contact-details h5 {
    font-weight: 700;
    color: var(--grey);
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Modern Hero Section */
.hero-modern {
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: #fff;
    overflow: hidden;
}

.hero-content-box {
    padding-right: 30px;
}

.hero-subtitle {
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
}

.hero-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.announcement-sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #eee;
    height: 100%;
}

.sidebar-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
    display: flex;
    justify-content: space-between;
}

.announcement-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.announcement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ann-tag {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--text-dark);
    color: #fff;
    margin-bottom: 8px;
    display: inline-block;
}

/* Category Sections */
.section-header-modern {
    margin-bottom: 60px;
}

.section-tag-modern {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
}

/* Literary News Cards */
.news-card-modern {
    background: #fff;
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.news-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.news-img-holder {
    position: relative;
    overflow: hidden;
}

.news-img-holder img {
    transition: transform 0.5s ease;
}

.news-card-modern:hover .news-img-holder img {
    transform: scale(1.1);
}

.news-date-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-green);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.85rem;
    z-index: 2;
}

.news-body-modern {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-cat {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.news-card-title {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card-modern:hover .news-card-title {
    color: var(--primary-green);
}

/* Stats Counter Section */
.stats-section-modern {
    background: #fdfdfd;
    padding: 60px 0;
}

.stat-item-modern {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.stat-item-modern:hover {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.05);
}

.stat-icon-box {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.stat-item-modern:hover .stat-icon-box,
.stat-item-modern:hover .text-muted,
.stat-item-modern:hover h4,
.stat-item-modern:hover h3,
.stat-item-modern:hover p {
    color: #fff !important;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-weight: 600;
    opacity: 0.8;
}

/* Alternating Feature Sections */
.feature-row-modern {
    padding: 40px 0;
}

.feature-img-modern {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-content-modern {
    padding: 40px;
}

/* Hero Responsiveness Tweaks */
@media (max-width: 768px) {
    .hero-modern {
        padding-top: 180px;
        padding-bottom: 50px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .hero-content-box {
        padding-right: 0;
    }

    .hero-modern .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }

    .hero-modern .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
        width: 100%;
    }

    .announcement-sidebar {
        padding: 20px;
    }
}

/* Issue Detail Section */
.issue-detail-section {
    padding: 80px 0;
    background: #fff;
}

.issue-cover-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.issue-cover-img {
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.issue-cover-img:hover {
    transform: scale(1.02);
}

.issue-info-box {
    padding-left: 30px;
}

.issue-badge {
    background: var(--primary-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.issue-title-large {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

.issue-meta-info {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.download-cta-box {
    background: #fdf2f2;
    border-left: 5px solid var(--accent-red);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 40px 0;
}

.btn-download-large {
    background: var(--primary-green);
    color: #fff;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-download-large:hover {
    background: #015e0c;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(1, 71, 9, 0.2);
}

@media (max-width: 992px) {
    .issue-info-box {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }

    .issue-title-large {
        font-size: 2.2rem;
    }

    .btn-download-large {
        width: 100%;
        justify-content: center;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(80, 159, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    color: var(--grey);
    margin-bottom: 2px;
}

.contact-info-text a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: var(--accent-red);
}

/* Overlapping Thrown Photos Style */
.overlapping-images-container {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjust based on your needs */
    display: flex;
    justify-content: center;
    align-items: center;
}

.throw-photo {
    position: absolute;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    transition: all 0.4s ease;
    object-fit: cover;
}

.photo-large {
    width: 100%;
    max-width: 950px;
    transform: rotate(-5deg);
    z-index: 1;
}

.photo-small {
    width: 50%;
    max-width: 170px;
    transform: rotate(10deg);
    z-index: 2;
    bottom: 20px;
    right: 20px;
    /* Adjust positioning */
}

.overlapping-images-container:hover .photo-large {
    transform: rotate(-2deg) scale(1.02);
    z-index: 1;
}

.overlapping-images-container:hover .photo-small {
    transform: rotate(5deg) scale(1.05) translate(-10px, -10px);
    z-index: 3;
    /* Bring to front on hover interaction if desired */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* 
========================================
NEW MODERN FOOTER STYLES
========================================
*/

.main-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.85)), url('assets/images/footer_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 5px solid var(--primary-green);
    position: relative;
    padding: 80px 0 40px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-red) 50%, var(--primary-green) 100%);
    z-index: 10;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 50px;
}

.footer-logo-container img {
    max-height: 100px;
    margin-bottom: 20px;
}

.footer-brand-info p {
    line-height: 1.8;
    color: #ffffff;
    max-width: 600px;
}

.footer-social-links {
    margin-top: 25px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #fff;
    color: #555;
    border-radius: 50%;
    margin-right: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.footer-social-links a:hover {
    background-color: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.footer-heading {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-red);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links-list a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #666;
}

.footer-contact-item i {
    width: 20px;
    /* Fixed width for alignment */
    margin-right: 12px;
    color: var(--white);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
}

@media (max-width: 576px) {
    .main-footer {
        padding-top: 60px;
    }

    .footer-heading {
        margin-bottom: 20px;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .footer-contact-item {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .footer-contact-item i {
        margin-right: 12px;
        margin-bottom: 0;
    }

    .footer-top {
        text-align: left;
    }
}

/* Floating Buttons Removed */

/* 
========================================
RESPONSIVE STYLES (Consolidated)
========================================
*/

@media (max-width: 991.98px) {

    /* Tiered Header Mobile Refinement */
    .header-tiered {
        background-color: var(--white);
    }

    .header-top-bar {
        padding: 5px 0 !important;
    }

    .header-info {
        display: none !important;
        /* Hide secondary info on mobile */
    }

    .brand-container {
        margin-top: 0;
        padding: 5px 15px;
        box-shadow: none;
        border-radius: 0;
    }

    .brand-container img {
        height: 40px !important;
    }

    .header-nav-bar {
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        background: var(--white);
        margin: 0;
        padding: 10px 20px;
        box-shadow: none;
        border-radius: 0;
        align-items: flex-start;
        /* Left align on mobile */
    }

    .header-nav-bar .nav-link {
        color: var(--text-dark) !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .header-ticker-bar {
        font-size: 0.75rem;
        padding: 4px 0;
    }

    .btn-nav-contact {
        padding: 12px 20px;
        margin: 15px 0 10px 0;
        width: 100%;
        text-align: center;
        border-radius: 5px;
        /* Less rounded for mobile full-width */
    }

    /* Hero Section Mobile Fixes */
    .parallax-section {
        background-attachment: scroll;
        min-height: auto;
        padding-top: 160px;
        /* Space for tiered header on mobile */
        padding-bottom: 60px;
    }

    .hero-glass-card {
        padding: 25px !important;
        margin-bottom: 40px;
        text-align: center;
    }

    .display-4 {
        font-size: 2.2rem !important;
    }

    .lead {
        font-size: 1rem;
    }

    /* Overlapping Photos Mobile Adjustment */
    .overlapping-images-container {
        height: 380px !important;
        margin-top: 20px;
        position: relative;
    }

    .photo-large {
        width: 85% !important;
        max-width: 320px !important;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg) !important;
    }

    .photo-small {
        width: 45% !important;
        max-width: 140px !important;
        bottom: 20px !important;
        right: 10% !important;
        transform: rotate(8deg) !important;
    }

    /* Page Header */
    .page-header {
        height: 250px;
        padding-top: 150px;
    }

    /* Gallery */
    .gallery-masonry {
        column-count: 2;
        column-gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.8rem !important;
    }

    .gallery-masonry {
        column-count: 1;
    }

    .overlapping-images-container {
        height: 320px !important;
    }

    .photo-large {
        max-width: 280px !important;
    }

    .photo-small {
        max-width: 120px !important;
        right: 5% !important;
    }
}

/* Issue Carousel Section */
.issue-carousel-section {
    position: relative;
    overflow: hidden;
}

.issue-slide-card {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 15px 5px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.issue-slide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2e7d32;
}

.issue-slide-card img {
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    width: 100%;
    aspect-ratio: 3 / 4.2;
    object-fit: cover;
}

.issue-slide-card:hover img {
    transform: scale(1.02);
}

.issue-slide-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.issue-slide-info h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.issue-slide-info span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.issue-slide-card a {
    text-decoration: none;
    display: block;
}

/* Swiper Customize */
.recentIssuesSwiper {
    padding-bottom: 50px !important;
}

.recentIssuesSwiper .swiper-pagination-bullet-active {
    background: #2e7d32;
}

/* Section Tag Refinement */
.feature-highlight {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}