/* Navigation Header */
.nav-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
}
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease, transform 20s ease-in-out;
    transform: scale(1);
}
.hero-bg-image.slideshow-active {
    opacity: 1;
    z-index: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}
.register-card {
    background: #fff3e0 !important;
    border: 2px solid #ffd180;
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.08);
}
.register-card h2 {
    color: #1a237e;
}
.register-card .cta-button {
    background: #fffbe8;
    color: #271e7a;
    border: none;
}
.register-card .cta-button:hover {
    background: #ffe0a3;
    color: #271e7a;
}
.donation-card h2 {
    color: #1a237e;
}
.cta-button.primary {
    background: #ff9800;
    color: #fff;
    border: none;
}
.cta-button.primary:hover {
    background: #fb8c00;
    color: #fff;
}
.donation-card {
    background: #fffbe8 !important;
    border: 2px solid #ffe0a3;
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.08);
}
.donation-section .donation-card,
.register-section .register-card {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #271e7aff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    height: 60px;
    width: auto;
    border-radius: 7px;
    object-fit: contain;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s;
    display: block;
}

.main-navigation a:hover {
    color: #271e7aff;
}

/* Dropdown Menu Styles */
.main-navigation .dropdown {
    position: relative;
}

.main-navigation .dropdown > a {
    padding: 0.75rem 1rem !important;
    cursor: pointer;
}

.main-navigation .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: -10px;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 0.5rem 0;
    z-index: 1000;
    flex-direction: column;
    gap: 0;
}

.main-navigation .dropdown:hover .dropdown-menu,
.main-navigation .dropdown-menu:hover {
    display: flex;
}

.main-navigation .dropdown-menu li {
    width: 100%;
}

.main-navigation .dropdown-menu a {
    padding: 0.875rem 1.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

.main-navigation .dropdown-menu a:hover {
    background: #f0f0ff;
    color: #271e7aff;
}

/* Add a bridge area to prevent dropdown from closing */
.main-navigation .dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 10px;
    transition: all 0.3s;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #271e7aff 0%, #271e7aff 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: contrast(1.1) brightness(1.1) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 30, 122, 0.8) 0%, rgba(39, 30, 122, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #271e7aff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Area */
.main-content {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* News Section */
.news-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #271e7aff;
    border-bottom: 3px solid #271e7aff;
    padding-bottom: 0.5rem;
}

.news-section h2 a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    cursor: pointer;
}

.news-section h2 a:hover {
    color: #1e1660;
    transform: translateX(5px);
}

.news-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.news-loading p {
    margin: 0;
    font-size: 1.1rem;
}

.news-grid {
    display: grid;
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }
.news-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #271e7aff;
}

.news-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.news-meta {
    font-size: 0.9rem;
    color: #999;
}

/* Sidebar Styles */
.sidebar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.widget {
    margin-bottom: 2rem;
}

.widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #271e7aff;
    border-bottom: 2px solid #271e7aff;
    padding-bottom: 0.5rem;
}

.widget h4 {
    font-size: 1.1rem;
    color: #555;
    margin: 1.5rem 0 1rem 0;
}

/* Events Styles */
.event-item {
    padding: 1rem;
    border-left: 4px solid #271e7aff;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    transition: background 0.3s;
}

.event-item:hover {
    background: #e3f2fd;
}

.event-type {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.event-type.rally {
    background: #e3f2fd;
    color: #1976d2;
}

.event-type.meeting {
    background: #f3e5f5;
    color: #7b1fa2;
}

.event-type.conference {
    background: #e8f5e8;
    color: #388e3c;
}

.event-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.event-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.event-title a:hover {
    color: #271e7aff;
}

.event-meta {
    font-size: 0.9rem;
    color: #666;
}

.event-location {
    color: #271e7aff;
    font-weight: 500;
}

.more-link {
    display: inline-block;
    background: #271e7aff;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: background 0.3s;
}

.more-link:hover {
    background: #b71c1c;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.video-item {
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.video-embed:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-placeholder {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #271e7aff, #f44336);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: background 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.video-thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.video-thumbnail:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

/* Add play button overlay */
.video-item a {
    position: relative;
    display: block;
    text-decoration: none;
}

.video-item a::after {
    content: '▶️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-item a:hover::after {
    background: rgba(0,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-item:hover .video-placeholder {
    background: linear-gradient(135deg, #b71c1c, #271e7aff);
}

.video-item h5 {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

.video-item h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem;
}

.video-item h5 a:hover {
    color: #271e7aff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Vision Section */
.vision-section {
    background: white;
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #271e7aff;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Policies Section */
.policies-section {
    padding: 4rem 0;
    background: white;
    margin: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policies-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #271e7aff;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.policy-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #271e7aff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.policy-card h3 {
    color: #271e7aff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.policy-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #271e7aff;
    font-weight: bold;
}

/* Footer Styles */
.site-footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #d35400;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(39,30,122,0.10);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #271e7aff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #271e7aff;
    color: white;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.back-to-top:hover {
    background: #271e7aff;
    transform: translateY(-2px);
}

/* Logo icon for bullet points */
.logo-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-navigation.mobile-open ul {
        display: flex;
    }
    
    /* Mobile dropdown styles */
    /* Mobile dropdown styles */
    .main-navigation .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .main-navigation .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        background: #f9f9f9;
        border-radius: 5px;
        display: none !important; /* Hide by default, override hover */
    }
    
    .main-navigation .dropdown:hover .dropdown-menu {
        display: none !important; /* Disable hover on mobile */
    }
    
    .main-navigation .dropdown.active .dropdown-menu {
        display: flex !important; /* Show on click for mobile */
    }
    .header-content {
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-title {
        font-size: 2rem;
    }
    
    .policies-section h2 {
        font-size: 2rem;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .vision-title {
        font-size: 1.8rem;
    }
    
    .policies-section h2 {
        font-size: 1.8rem;
    }
    .btn{display:inline-flex; align-items:center; gap:.5rem; border:1px solid var(--border); padding:.6rem .9rem; border-radius:10px; background:var(--card)}
    .btn.primary{background:var(--brand); color:#fff; border-color:transparent}
    .btn.primary:hover{background:var(--brand-600)}
    .strip{background:var(--bg-soft); border:1px solid var(--border); border-radius:var(--radius); padding:1.25rem}
    .strip .actions{display:flex; gap:.75rem; flex-wrap:wrap}
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.modal-body {
    padding: 20px 30px;
    max-height: calc(90vh - 70px);
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h2 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #e8eaf6;
    padding-bottom: 0.5rem;
}

.modal-body h3 {
    color: #1a237e;
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.3rem;
}

.modal-body h4 {
    color: #3f51b5;
    margin: 1.2rem 0 0.6rem 0;
    font-size: 1.1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #444;
}

.modal-body ul {
    margin: 0.8rem 0 1.2rem 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: #555;
}

.modal-body strong {
    color: #1a237e;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.close:hover,
.close:focus {
    color: #000;
    background-color: #f5f5f5;
}

/* News card hover effect for better UX */
.news-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #3f51b5;
}

.news-card:hover .news-title a {
    color: #3f51b5;
}

/* Modal animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-body {
        padding: 15px 20px;
    }
    
    .modal-body h2 {
        font-size: 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
    }
    
    .modal-body h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 100%;
    }
    
    .modal-body {
        padding: 10px 15px;
    }
    
    .modal-body h2 {
        font-size: 1.3rem;
    }
}

/* PDF Link Styles */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #1a237e !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.pdf-link:hover {
    background: #e3f2fd;
    border-color: #1a237e;
    color: #0d47a1 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.15);
}

.news-meta .pdf-link {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-flex;
}

/* Modal PDF link styles */
.modal-body .pdf-link {
    display: inline-flex;
    margin-left: 0;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.modal-body .pdf-link:hover {
    background: #e8eaf6;
    border-color: #3f51b5;
}
