* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}


body {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.projects-section {
    padding: 100px;
    background: rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    color: #ffffff;
}

.section-title::before {
    content: "#";
    color: #8b45c5;
    margin-right: 5px;
}

.view-all {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #8b45c5;
}

.view-all::after {
    content: " ⟶";
    margin-left: 5px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
    justify-content: center;
}

.project-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(139, 69, 197, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 197, 0.2);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.nbsa-progress {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    color: white;
}

.nbsa-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    height: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-text {
    text-align: center;
    font-weight: 600;
}

hr {
    border: 1px solid #2c3e70;
    margin-bottom: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #8b45c5;
    border-radius: 4px;
}

.main-container {
    padding-top: 100px;
    padding: 120px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #8b45c5, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.academic-year {
    font-size: 1.2rem;
    color: #999;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 197, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #8b45c5, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.nbsa-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.nbsa-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.progress-container {
    position: relative;
    margin-bottom: 20px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    height: 25px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, #8b45c5, #4fc3f7);
    height: 100%;
    border-radius: 50px;
    transition: width 2s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

.quarters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.quarter-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(139, 69, 197, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quarter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 197, 0.4);
}

.quarter-header {
    background: linear-gradient(135deg, #8b45c5, #4fc3f7);
    padding: 20px;
    text-align: center;
}

.quarter-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.quarter-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.quarter-content {
    padding: 20px;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    transition: 0.3s ease;
}

.course-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.course-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
}

.course-ec {
    background: #8b45c5;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.course-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
}

.detail-label {
    color: #999;
}

.detail-value {
    color: #ffffff;
    font-weight: bold;
}

.grade-excellent { color: #4caf50; }
.grade-good { color: #8bc34a; }
.grade-satisfactory { color: #ffc107; }
.grade-insufficient { color: #ff5722; }
.grade-pending { color: #9e9e9e; }

.exam-list {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.exam-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.exam-name {
    color: #ccc;
}

.exam-grade {
    font-weight: bold;
}

.section-header {
    text-align: center;
    margin: 60px 0 40px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title::before {
    content: "#";
    color: #8b45c5;
    margin-right: 10px;
}