    /* Events Section with Images */
/* Events Section with Cover Photo */
.events {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 30px 0;
}

.event-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 480px;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
}

/* Event Cover Photo - Full width at top */
.event-cover {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.event-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-cover-image {
    transform: scale(1.05);
}

.event-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.event-cover-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.event-date-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 12px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.event-date-overlay .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
}

.event-date-overlay .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.location {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 10px;
    font-style: normal;
    gap: 8px;
}

.location i {
    color: #3b82f6;
    font-size: 1rem;
}

.event-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-time i {
    color: #ef4444;
}

.event-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.event-type {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-link:hover {
    color: #1e3a8a;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .event-card {
        height: 460px;
    }
    
    .event-cover {
        height: 180px;
    }
    
    .event-date-overlay {
        padding: 10px 12px;
    }
    
    .event-date-overlay .day {
        font-size: 1.5rem;
    }
    
    .event-date-overlay .month {
        font-size: 0.8rem;
    }
    
    .event-content h3 {
        font-size: 1.3rem;
    }
}

        /* Jobs Section Styles */
        .jobs-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }

        .job-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.8);
            position: relative;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #10b981, #34d399, #10b981);
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
        }

        .job-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
        }

        .job-header {
            padding: 25px 25px 15px;
            border-bottom: 1px solid #e5e7eb;
        }

        .job-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #1e3a8a;
            margin-bottom: 8px;
            line-height: 1.3;
            font-weight: 700;
        }

        .job-company {
            font-size: 1.1rem;
            color: #3b82f6;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .job-type {
            display: inline-block;
            background: #dbeafe;
            color: #1e40af;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .job-details {
            padding: 20px 25px;
        }

        .job-description {
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            /* -webkit-line-clamp: 3; */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .job-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }
        /* Applied Job Styles */
        .job-applied {
            position: relative;
            border: 2px solid #10b981;
            background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
        }

        .job-applied::before {
            background: linear-gradient(90deg, #10b981, #34d399, #10b981) !important;
        }

        .applied-badge {
            background: linear-gradient(135deg, #10b981, #34d399);
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-left: 10px;
        }

        .job-header-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .job-applied-btn {
            background: #10b981;
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: not-allowed;
            opacity: 0.8;
        }

        /* Hover effects for applied jobs */
        .job-applied:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
        }

        /* Make the applied button look disabled but nice */
        .job-applied-btn i {
            font-size: 0.8rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .job-header-right {
                margin-top: 10px;
                justify-content: flex-start;
            }
            
            .applied-badge {
                margin-left: 0;
                margin-top: 5px;
            }
            
            .job-type {
                margin-bottom: 5px;
            }
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #64748b;
            font-size: 0.9rem;
        }

        .meta-item i {
            color: #10b981;
            width: 16px;
        }

        .job-footer {
            padding: 20px 25px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .job-posted {
            color: #6b7280;
            font-size: 0.85rem;
        }

        .job-apply {
            background: linear-gradient(135deg, #10b981, #34d399);
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .job-apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
        }

        .view-all-jobs {
            text-align: center;
            margin-top: 40px;
        }

        .btn-jobs {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-jobs:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
        }

        .empty-state {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            margin: 20px 0;
            grid-column: 1 / -1;
        }

        .empty-state i {
            font-size: 64px;
            color: #3b82f6;
            margin-bottom: 25px;
            opacity: 0.7;
        }

        .empty-state h3 {
            font-size: 1.8rem;
            color: #1e3a8a;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .empty-state p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 400px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Alumni Posts Wall Styles */
        .posts-wall-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
        }

        .posts-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .posts-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .quotes-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .post-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.8);
            position: relative;
        }

        .post-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #a855f7, #8b5cf6);
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
        }

        .post-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
        }

        .post-header {
            padding: 25px 25px 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid #e5e7eb;
        }

        .post-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            overflow: hidden;
        }

        .post-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-user-info {
            flex: 1;
        }

        .post-user-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: #1e3a8a;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .post-user-details {
            display: flex;
            gap: 15px;
            color: #64748b;
            font-size: 0.9rem;
        }

        .post-user-course {
            color: #8b5cf6;
            font-weight: 600;
        }

        .post-content {
            padding: 20px 25px;
        }

        .post-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 20px;
        }

        .post-image {
            width: 100%;
            border-radius: 15px;
            margin-bottom: 20px;
            max-height: 300px;
            object-fit: cover;
        }

        .post-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
            border-top: 1px solid #e5e7eb;
            color: #64748b;
            font-size: 0.9rem;
        }

        .post-actions {
            display: flex;
            gap: 20px;
        }

        .post-action {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: color 0.3s ease;
            color: #64748b;
        }

        .post-action:hover {
            color: #8b5cf6;
        }

        .post-action.liked {
            color: #ef4444;
        }

        .post-time {
            color: #9ca3af;
        }

        .create-post-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            border: 2px dashed #d1d5db;
            transition: all 0.3s ease;
            text-align: center;
        }

        .create-post-card:hover {
            border-color: #8b5cf6;
            transform: translateY(-5px);
        }

        .create-post-icon {
            font-size: 3rem;
            color: #8b5cf6;
            margin-bottom: 20px;
        }

        .create-post-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #1e3a8a;
            margin-bottom: 10px;
        }

        .create-post-text p {
            color: #64748b;
            margin-bottom: 20px;
        }

        .btn-create-post {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: white;
            padding: 12px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-create-post:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
        }

        /* Story Cards for Quotes */
        .story-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.8);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
        }

        .story-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
        }

        .story-quote {
            font-size: 3rem;
            color: #f59e0b;
            margin-bottom: 25px;
            opacity: 0.7;
        }

        .story-content p {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #1e3a8a;
            font-style: italic;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        .story-author {
            color: #64748b;
            font-weight: 600;
            font-size: 1rem;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        @media (max-width: 1024px) {
            .posts-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .posts-column, .quotes-column {
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px 0;
            }
            
            .event-card {
                height: auto;
                min-height: 350px;
            }
            
            .event-date {
                padding: 20px 15px;
            }
            
            .event-content h3 {
                font-size: 1.4rem;
            }
            
            .jobs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .job-meta {
                grid-template-columns: 1fr;
            }
            
            .empty-state {
                padding: 40px 20px;
            }
            
            .empty-state i {
                font-size: 48px;
            }
            
            .post-header {
                padding: 20px 20px 15px;
            }
            
            .post-avatar {
                width: 50px;
                height: 50px;
            }
            
            .post-content {
                padding: 15px 20px;
            }
            
            .create-post-card {
                padding: 25px 20px;
            }
        }

        /* Remove underline from buttons */
        a.btn {
            text-decoration: none;
        }
         /* Announcements Section Styles */
        .announcements-section {
            background: linear-gradient(135deg, #1a365d 0%, #1a365d 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .announcements-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .announcements-section .container {
            position: relative;
            z-index: 2;
        }

        .announcements-section .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .announcements-section .section-title h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .announcements-section .section-title p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }

        .announcements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .announcement-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .announcement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 1);
        }

        .announcement-header {
            display: flex;
            justify-content: between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .announcement-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .announcement-title {
            flex: 1;
        }

        .announcement-title h3 {
            color: #2d3748;
            font-size: 1.4rem;
            margin-bottom: 8px;
            font-weight: 600;
            line-height: 1.3;
        }

        .announcement-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            color: #718096;
        }

        .announcement-author {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }

        .announcement-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .announcement-content {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .announcement-content p {
            margin: 0;
            font-size: 1rem;
        }

        .announcement-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .announcement-status {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-active {
            background: #c6f6d5;
            color: #22543d;
        }

        .view-all-announcements {
            text-align: center;
        }

        .btn-announcements {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-announcements:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            color: white;
        }

        .empty-announcements {
            text-align: center;
            padding: 60px 20px;
            color: white;
        }

        .empty-announcements i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .empty-announcements h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: white;
        }

        .empty-announcements p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 0;
        }

        /* Update stats section to include announcements count */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .stats-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .announcements-grid {
                grid-template-columns: 1fr;
            }
            
            .announcement-card {
                padding: 20px;
            }
            
            .announcement-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .announcement-icon {
                margin-bottom: 15px;
            }
            
            .announcements-section .section-title h2 {
                font-size: 2rem;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .announcement-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }