body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1d1d1d;
    color: #eaeaea;
}
header {
    background: linear-gradient(to right, #222 30%, #ff6600 70%);
    color: #fff;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .logo {
    font-size: 24px;
    font-weight: bold;
    width: 30%;
    color: #fff;
    text-decoration: none;
}
nav a {
    color: #eaeaea;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}
nav a:hover {
    color: #fff;
}
h2 {
    font-size: 28px;
    color: #ff6a00;
    margin-bottom: 20px;
    text-align: center;
}
.container {
    display: flex;
    margin: 0 auto;
    max-width: 1320px;
    padding: 20px;
    width: 100%;
}
header .container{
    align-items: center
}
.left, .right {
    width: 25%;
    padding: 10px;
}
.middle {
    width: 75%;
    padding: 10px;
    text-align: center;
}
.cybersporters, .new-students {
    background-color: #292929;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.cybersporters ul, .new-students ul {
    list-style: none;
    padding: 0;
}
.cybersporters li, .new-students li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.cybersporters img, .new-students img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.progress-bar {
    background-color: #444;
    border-radius: 5px;
    overflow: hidden;
    margin: 5px 0;
    width: 100%;
}
.progress-bar div {
    height: 8px;
    background-color: #ff6600;
}
.progress-text {
    font-size: 12px;
    color: #fff;
    text-align: right;
    padding-right: 10px;
}
.manager-profile {
    background-color: #292929;
    padding: 20px;
    border-radius: 8px;
}
.manager-profile img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.content {
    border-radius: 10px;
    margin-top: 20px;
}
.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.step {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.step:nth-child(even) {
    background-color: #444;
}
.step h3 {
    font-size: 20px;
    color: #ff6a00;
    margin-bottom: 10px;
}
.step p {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
}
.sidebar h2 {
    color: #ff6a00;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.student-list {
    list-style-type: none;
    padding: 0;
}

.student-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    background-color: #333;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.student-list li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #ff6a00;
    object-fit: cover;
}

.student-list li span {
    font-size: 18px;
    color: #fff;
}

.student-list li:hover {
    background-color: #444;
    transition: background-color 0.3s ease;
}

/* For smaller screens, adjust sidebar */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        margin: 0;
        padding: 15px;
    }
}
.manager-section {
    display: flex;
    justify-content: center;
    padding: 30px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 20px auto;
    color: #fff;
}

.manager-photo {
    margin-right: 30px;
}

.manager-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff6a00;
    object-fit: cover;
}

.manager-info {
    text-align: left;
}

.manager-name {
    font-size: 24px;
    color: #ff6a00;
    margin: 0;
    text-align: left;
}

.manager-role {
    font-size: 18px;
    color: #ff6a00;
    margin: 5px 0;
}

.manager-bio {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .manager-section {
        flex-direction: column;
        align-items: center;
    }

    .manager-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.orange-color{
    color:#FF6600
}