* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    background: pink;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    background: #667eea;
    color: rgb(255, 255, 255);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero, .about-section, .contact-section {
    background: yellowgreen;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1rem 0;
    border: 3px solid #667eea;
}

.uni-logo {
    width: 250px;
    margin: 1rem auto;
    display: block;
}

.btn {
    background: #667eea;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #764ba2;
    transform: scale(1.05);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-info {
    margin-top: 2rem;
    padding: 1rem;
    background: #f0f0f0;
    border-radius: 10px;
}

footer {
    background: green;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

ul {
    list-style: none;
    padding: 1rem;
}

li {
    padding: 0.5rem;
    font-size: 1.1rem;
}

h1, h2 {
    color: #333;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
}
/* Numbered Courses List */
.courses-list {
    list-style-type: decimal;
    padding-left: 30px;
    margin: 15px 0;
}

.courses-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.courses-list li:hover {
    color: #667eea;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.courses-list {
    list-style-type: decimal;
    padding-left: 30px;
}

.courses-list li {
    background: linear-gradient(135deg, #e8f4f8, #d1e8f0);
    color: #006D77;
    padding: 14px 20px;
    margin: 10px 0;
    border-radius: 12px;
    border-left: 5px solid #40E0D0;
    font-weight: 500;
    font-size: 16px;
    width: 60%;  
}     

.courses-list li:hover {
    background: linear-gradient(135deg, #40E0D0, #006D77);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,109,119,0.3);
}

/* Style the numbers */
.courses-list li::marker {
    color: #40E0D0;
    font-weight: bold;
    font-size: 18px;
}

.course {
    background: linear-gradient(135deg, #e8f4f8, #d1e8f0);
    color: #006D77;
    padding: 12px;
    border-radius: 10px;
    border-left: 4px solid #40E0D0;
    transition: all 0.3s ease;
}

.course:hover {
    background: linear-gradient(135deg, #40E0D0, #006D77);
    color: white;
    transform: translateY(-3px);
}
/* Red Text for University Name */
.red-university-text {
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}
.red-university-text {
    color: #ff0000;
    font-size: 24px;  /* Made BIGGER (was 22px) */
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}
.uni-logo-small {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.uni-logo-small img {
    width: 120px;  /* Logo size */
    height: auto;
    border-radius: 50%;
    border: 3px solid #40E0D0;
    padding: 5px;
    background: white;
}

.red-university-text {
    color: #ff0000;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}


