/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-dropdown .nav-link {
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown .nav-link:last-child {
    border-bottom: none;
}

.nav-dropdown .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-dropdown {
        position: static;
        box-shadow: none;
        min-width: auto;
        background: transparent;
        padding: 0;
    }
    
    .nav-dropdown .dropdown-menu {
        display: none;
        position: static;
        background: white;
        min-width: 100%;
        box-shadow: none;
        padding: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .nav-dropdown .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-dropdown .nav-link:last-child {
        border-bottom: none;
    }

    /* ✅ FIX: Make all normal navbar links visible on white background */
    .nav-menu .nav-link {
        color: #001f4d !important; /* Navy or dark blue text */
    }

    /* ✅ EXCEPTION: Keep the Submit (CTA) button white */
    .nav-menu .nav-cta {
        color: white !important;
        background-color: #001f4d !important; /* Optional: ensure contrast */
    }

}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover {
    transform: translateX(5px);
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    padding: 3rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section.bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 0 3rem;
    margin-top: 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Issue Header */
.issue-header {
    text-align: center;
    margin-bottom: 3rem;
}

.issue-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.issue-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Articles Table */
.articles-table-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.articles-table {
    width: 100%;
    border-collapse: collapse;
}

.articles-table th {
    background: var(--bg-light);
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--secondary-color);
}

.articles-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.articles-table tr:last-child td {
    border-bottom: none;
}

.articles-table tr {
    transition: background-color 0.3s;
}

.articles-table tr:hover {
    background-color: var(--bg-light);
}

.articles-table tr:not(:last-child) {
    position: relative;
}

.articles-table tr:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

.article-title {
    font-weight: 600;
}

.article-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.article-title a:hover {
    color: var(--secondary-color);
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.pdf-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Featured Articles */
.featured-articles {
    padding: 5rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* --- Fix article overlay and improve mobile layout --- */
.article-content {
    position: relative;
    z-index: 2; /* ensures it stays above sidebar or background */
    background: #fff; /* ensures readability */
    border-radius: 8px;
}

/* PDF viewer layout */
.pdf-viewer {
    width: 100%;
    height: 80vh;
    border: none;
    margin-top: 1rem;
}

/* Mobile PDF button section */
.mobile-only {
    display: none;
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    z-index: 10; /* ensures red button appears above content */
}

/* Red circular button style (already exists, but reaffirmed for mobile) */
.pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #e74c3c;
    color: white !important;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.pdf-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* --- Responsive handling --- */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* ✅ Show embedded PDF on mobile */
    .pdf-viewer {
        display: block;
        width: 100%;
        height: 70vh; /* smaller height for phones */
        border: none;
        margin-top: 1rem;
    }

    /* Ensure PDF tools are readable and not cramped */
    .pdf-tools {
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: center;
    }

    .pdf-tools button {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    /* Ensure nothing overlaps */
    .article-content {
        padding-bottom: 2rem;
    }
}


.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Newsletter Section */
.newsletter {
    background: var(--bg-light);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

/* About Page Styles - Wider Content */
.about-section {
    padding: 90px 0 80px;
    background-color: #f8f9fa;
}


.about-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content > div {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 28px;
    color: #1A3B5D;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4dabf7;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.about-content ul {
    padding-left: 15px;
}

.about-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #333;
}
/* team member section */
.team-section {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.team-member {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #4dabf7;
}

.team-member h3 {
    font-size: 18px;
    color: #1A3B5D;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .articles-table {
        font-size: 0.9rem;
    }
    
    .articles-table th,
    .articles-table td {
        padding: 1rem 0.8rem;
    }
    
    .pdf-btn {
        width: 35px;
        height: 35px;
    }
}
/* Year Selector */
.year-selector {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.year-selector label {
    font-weight: 600;
    color: var(--text-dark);
}

.year-selector select {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.year-selector select:hover {
    border-color: var(--secondary-color);
}

/* Issues Container */
.issues-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.issue-cover {
    height: 200px;
    overflow: hidden;
}

.issue-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.issue-card:hover .issue-cover img {
    transform: scale(1.05);
}

.issue-info {
    padding: 1.5rem;
    text-align: center;
}

.issue-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.issue-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
/* Current Articles Section */
.current-articles {
    padding: 5rem 0;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
}

.article-item {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #1e3a8a;
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-title {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    line-height: 1.1;
}

.article-title a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s;
}

.article-title a:hover {
    color: #3b82f6;
}

.article-authors {
    color: #6b7280;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.article-pdf {
    opacity: 1;
    transition: opacity 0.3s;
}

.article-item:hover .article-pdf {
    opacity: 1;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    border: 1px solid #dc2626;
    border-radius: 4px;
    transition: all 0.3s;
}

.pdf-link:hover {
    background-color: #dc2626;
    color: white;
    transform: translateY(-2px);
}
/* Archives Content */
.archives-content {
    margin-top: 2rem;
}

.archive-section {
    margin-bottom: 3rem;
}

.archive-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}
/* Archives Page Styles */
.archive-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.archive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.archive-cover {
    flex: 0 0 200px;
    overflow: hidden;
}

.archive-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.archive-item:hover .archive-cover img {
    transform: scale(1.05);
}

.archive-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.archive-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.archive-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.archive-info p:last-of-type {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .archive-item {
        flex-direction: column;
    }
    
    .archive-cover {
        flex: none;
        height: 200px;
    }
}
/* Editorial Board Styles */
.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.board-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.member-specialty {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.member-institution {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Page Styles */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Submit Article Styles */
.submission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.submission-guidelines {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.submission-guidelines h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.submission-guidelines h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.submission-guidelines ul,
.submission-guidelines ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.submission-guidelines li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.guidelines-download {
    margin-top: 2rem;
}

.submission-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.submission-form h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design for New Pages */
@media (max-width: 992px) {
    .about-content,
    .contact-content,
    .submission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .board-members {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}
/* Decrease gap between article cards */
.articles-list {
    gap: 0.7rem !important;
}

.archive-item {
    margin-bottom: 1rem !important;
}

/* --- Mobile-only PDF button with text --- */
@media (max-width: 768px) {
  .mobile-only .pdf-btn {
      width: auto;               /* allow flexible width */
      height: auto;
      border-radius: 30px;       /* rounded rectangle */
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      gap: 8px;
  }

  .mobile-only .pdf-btn i {
      font-size: 1.2rem;
  }
}
