

.projects-section {
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.projects-section h2 {
    font-size: 3rem;
    color:black;
    margin-bottom: 20px;
}

.projects-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-image {
    flex: 1;
}

.left-image img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.84);
}

.right-content {
    flex: 1.5;
    text-align: left;
}

.right-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.project-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.project-box {
    background-color: white;
    padding: 4px;
    border-radius: 10px;
    border:2px  solid black;
    text-align: center;
}

.project-box img {
    width: 100%;
    height: 130px;
    border-radius: 8px;
}

.hr-3{
    margin: 12px auto; 
    width: 95%; 
    border:  1px solid black ; 
    opacity: 1;
    border-radius: 30px; 
    transition: all 0.3s ease; 
}

.major-year h1{
    margin-top:50px;
    font-size:2.9rem;
    font-weight:600;
}