/* Full Width Sections */
body {
    margin: 0;
    padding: 0;
}

header {
    margin: 0;
}

/* Cards Section - Full Width with Gradient */
.cards-section {
    background: linear-gradient(135deg, #0a1f0a 0%, #1a1a1a 50%, #000000 100%);
    padding: 80px 20px;
    margin: 0;
    width: 100%;
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-header-section {
    background: linear-gradient(135deg, #006400, #000000);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-icon {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-header-section h2 {
    margin: 0;
    font-size: 32px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.card-links {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-radius: 12px;
    text-decoration: none;
    color: #006400;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
}

.card-link:hover {
    background: linear-gradient(135deg, #006400, #004d00);
    color: white;
    transform: translateY(-5px);
    border: 2px solid #006400;
    box-shadow: 0 8px 20px rgba(0, 100, 0, 0.3);
}

.card-link i {
    margin-right: 10px;
    font-size: 24px;
}

/* Blog Section - Full Width with Modern Design */
.blog-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin: 0;
    width: 100%;
}

.blog-section h2 {
    text-align: center;
    font-size: 48px;
    color: #006400;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

.blog-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-btn.all {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.category-btn.all:hover,
.category-btn.all.active {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.category-btn:not(.all) {
    background: white;
    border-color: currentColor;
}

.category-btn:not(.all):hover,
.category-btn:not(.all).active {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-post-header {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 3px solid;
}

.blog-post h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover h3 {
    color: #006400;
}

.blog-post h3 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post h3 a:hover {
    color: #006400;
    text-decoration: none;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.blog-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-content {
    padding: 25px;
    flex-grow: 1;
}

.blog-excerpt {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #006400, #000000);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: linear-gradient(135deg, #004d00, #333333);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pagination a {
    background: white;
    color: #006400;
    border: 2px solid #006400;
}

.pagination a:hover {
    background: #006400;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.3);
}

.pagination span {
    background: #006400;
    color: white;
    border: 2px solid #006400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-card {
        max-width: 100%;
    }
    
    .card-links {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-section h2 {
        font-size: 36px;
    }
}
