/* Moran Autonomous Council - Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Skip to content for screen readers */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #fff;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid #ff6b35;
    outline-offset: 2px;
}

/* Accessibility toolbar */
.accessibility-toolbar {
    background: #2c5aa0;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.toolbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.font-controls button, .language-select {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.font-controls button:hover, .language-select:hover {
    background: rgba(255,255,255,0.3);
}

.language-select option {
    background: #2c5aa0;
    color: white;
    padding: 5px;
}

/* Accessibility button styles */
.accessibility-btn, .font-btn, .contrast-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.accessibility-btn:hover, .font-btn:hover, .contrast-btn:hover {
    background: rgba(255,255,255,0.3);
}

.font-btn.active {
    background: rgba(255,255,255,0.4);
    font-weight: bold;
}

/* Font size classes */
.font-small {
    font-size: 14px;
}

.font-normal {
    font-size: 16px;
}

.font-large {
    font-size: 18px;
}

.font-xlarge {
    font-size: 20px;
}

.font-small * {
    font-size: inherit !important;
}

.font-large * {
    font-size: inherit !important;
}

.font-xlarge * {
    font-size: inherit !important;
}

/* High contrast mode */
.high-contrast {
    background: black !important;
    color: white !important;
}

.high-contrast * {
    background: black !important;
    color: white !important;
}

.high-contrast a {
    color: yellow !important;
}

.high-contrast .btn {
    background: white !important;
    color: black !important;
    border: 2px solid white !important;
}

.high-contrast .card {
    background: #333 !important;
    border: 2px solid white !important;
}

.high-contrast .table {
    background: black !important;
    color: white !important;
    border: 1px solid white !important;
}

.high-contrast .table th,
.high-contrast .table td {
    background: black !important;
    color: white !important;
    border: 1px solid white !important;
}

/* Screen reader mode */
.screen-reader-mode {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.screen-reader-mode * {
    outline: 2px solid #0066cc when focused;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emblem {
    width: 120px;
    height: 120px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.site-title {
    flex: 1;
}

.site-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.site-title p {
    font-size: 14px;
    opacity: 0.9;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-box input {
    border: none;
    padding: 10px 15px;
    width: 200px;
    outline: none;
}

.search-box button {
    background: #ff6b35;
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
}

/* Navigation */
.navigation {
    background: #1a365d;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover, .nav-menu a:focus {
    background: rgba(255,255,255,0.1);
    color: #ffd700;
}

/* Dropdown Menu Styles */
.nav-menu .dropdown-nav {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-menu .dropdown-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.1);
}

.nav-menu .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    color: #333;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.nav-menu .dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2c5aa0;
    padding-left: 25px;
}

.nav-menu .dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Close dropdown when clicking outside */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.dropdown-overlay.active {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    padding: 15px 20px;
    cursor: pointer;
}

.mobile-establishment-text {
    display: none;
    color: white;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 400;
    opacity: 0.9;
}

/* Notification Marquee */
.notification-marquee {
    background: white;
    border-bottom: 2px solid #e9ecef;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.marquee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 60s linear infinite;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.marquee-label {
    background: #ff6b35;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    margin-right: 15px;
    font-weight: 600;
    flex-shrink: 0;
}

.marquee-text {
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.notification-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive marquee */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 13px;
    }
    
    .marquee-label {
        font-size: 12px;
        padding: 4px 10px;
        margin-right: 10px;
    }
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover, .footer-section a:focus {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .toolbar-container {
        flex-direction: column;
        gap: 10px;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .site-title h1 {
        font-size: 24px;
    }

    .search-box input {
        width: 150px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a365d;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-establishment-text {
        display: inline-block;
    }

    .nav-container {
        display: flex;
        align-items: center;
    }

    .emblem {
        width: 100px;
        height: 100px;
    }

    .logo-image {
        width: 130px;
        height: 130px;
    }

    /* Main content responsive */
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    /* Content area order */
    .content-area {
        order: 1;
        width: 100%;
    }

    /* Sidebar order and styling */
    .sidebar {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Quick Services responsive */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .service-card {
        padding: 12px;
    }

    .service-card i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .service-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 11px;
    }

    /* Mobile content order */
    .content-area {
        order: 1;
    }

    .sidebar {
        order: 2;
        gap: 15px;
    }

    /* Sidebar widget ordering for mobile */
    .sidebar-widget:nth-child(1) { order: 1; } /* Quick Links */
    .sidebar-widget:nth-child(2) { order: 2; } /* Important Links */
    .sidebar-widget:nth-child(3) { order: 3; } /* Contact Information */
    .sidebar-widget:nth-child(4) { order: 4; } /* Emergency Contacts */

    /* News section responsive */
    .news-item {
        flex-direction: column;
        gap: 10px;
    }

    .news-date {
        align-self: flex-start;
        min-width: auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    .news-content h4 {
        font-size: 16px;
    }

    .news-content p {
        font-size: 14px;
    }

    /* Sidebar responsive */
    .sidebar {
        gap: 20px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .widget-title {
        font-size: 16px;
    }

    /* Hero section responsive */
    .hero-section {
        min-height: 300px;
        padding: 40px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Quick services responsive */
    .quick-services {
        padding: 20px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-content {
        gap: 30px;
        padding: 30px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-card {
        padding: 18px;
    }

    .service-card i {
        font-size: 32px;
    }

    .sidebar-widget {
        padding: 22px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
        padding-bottom: 10px;
    }

    .main-content {
        padding: 15px;
    }

    .quick-services, .news-section, .sidebar-widget {
        padding: 15px;
    }

    .section-title {
        font-size: 18px;
    }

    .service-card {
        padding: 12px;
    }

    .service-card i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .service-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 12px;
    }

    .news-content h4 {
        font-size: 14px;
    }

    .news-content p {
        font-size: 13px;
    }

    .widget-title {
        font-size: 14px;
    }

    .link-list a {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* High contrast mode */
.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

.high-contrast * {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

.high-contrast a {
    color: #ffff00 !important;
}

/* Font size classes */
.font-small {
    font-size: 14px;
}

.font-normal {
    font-size: 16px;
}

.font-large {
    font-size: 18px;
}

.font-xlarge {
    font-size: 20px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Section */
.hero-section {
    background: url('../images/mac.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    padding-bottom: 10px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.7);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .main-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
}

/* Quick Services */
.quick-services {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
    text-decoration: none;
}

.service-card i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.service-card:hover i {
    color: #ffd700;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* News Section */
.news-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    background: #ff6b35;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    min-width: 60px;
    font-size: 14px;
}

.news-content h4 {
    color: #2c5aa0;
    margin-bottom: 10px;
    font-size: 18px;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 8px;
}

.link-list a {
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.link-list a:hover, .link-list a:focus {
    color: #2c5aa0;
    padding-left: 10px;
    text-decoration: none;
}

/* Bootstrap-like classes for councilors page */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-img-top {
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.text-primary {
    color: #2c5aa0 !important;
}

.text-muted {
    color: #6c757d !important;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1e3c72;
    color: white;
    text-decoration: none;
}

.btn-primary {
    background: #2c5aa0;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.h-100 {
    height: 100%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.scroll-to-top:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Marquee responsive */
    .marquee-content {
        font-size: 13px;
    }
    
    .marquee-label {
        font-size: 12px;
        padding: 4px 10px;
        margin-right: 10px;
    }
}

/* Dropdown navigation mobile responsive */
@media (max-width: 768px) {
    .dropdown-nav {
        position: static !important;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background: #ffffff;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
        border-top: 1px solid #e0e0e0;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu .nav-link {
        padding: 12px 20px;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
    }
    
    .dropdown-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-toggle-btn {
        background: transparent;
        border: 1px solid #ddd;
        padding: 8px 12px;
        font-size: 14px;
        color: #333;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
    
    .dropdown-toggle-btn:hover {
        background: #f8f9fa;
        color: #e74c3c;
    }
}

/* Timeline Styles for About Page */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    background: #f8f9fa;
    border-left: 4px solid #2c5aa0;
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: #e9ecef;
    border-left-color: #ff6b35;
    transform: translateX(5px);
}

.timeline-item strong {
    color: #2c5aa0;
    font-weight: 600;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Icon animations */
.fa-3x {
    transition: transform 0.3s ease;
}

.card:hover .fa-3x {
    transform: scale(1.1);
}
