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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f9ff;
  color: #111;
  line-height: 1.6;
}

/* ===== Header and Navbar ===== */
header {
  background-color: rgba(201, 232, 251, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #004c99;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

nav {
  display: flex;
  align-items: center;
 
}

.container img{
    width: 2000px;

  max-width: 100%;
  height: 600px;
  border-radius: 5px;

}
nav a {
  position: relative;
  margin-left: 20px;
  text-decoration: none;
  color: #004c99;
  font-weight: bold;
  padding: 5px 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: rgb(0, 0, 0);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #061682;
  transform: scale(1.1);
  transition: 0.5s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ===== Main ===== */
main {
  padding: 60px 40px;
  margin-top: 1vh;
  background-color: #e0f7ff;
}

section {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #fafafa;
}

hr{
  border: none;
  height: 2px;
  /* Set the hr color */
  color: #333;  /* old IE */
  background-color: #333; 
}

/* ===== Student info section ===== */
.student {
  text-align: center;
  line-height: 1.9;
  background-color: rgb(124, 169, 190);
  color: black;
  padding: 10px;
  margin-top: 80px;
}

/* ===== Container layout ===== */
.container {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

main {
  flex: 3;
}

aside {
  flex: 1;
  background-color: rgb(89, 174, 214);
  padding: 15px;
  border: 1px solid #ddd;
  margin-right: 20px;
}

aside h3 {
  margin-bottom: 10px;
}

aside ul {
  list-style: none;
  padding-left: 0;
}

aside li {
  margin-bottom: 5px;
}

aside a {
  text-decoration: none;
  color: #004c99;
}

aside a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
footer {
  background-color: #004c99;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 0 0 auto;
  width: 200px;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 180px;
  height: auto;
  display: block;
}

.footer-site-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 0;
  line-height: 1;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  border-bottom: 2px solid #aee;
  display: inline-block;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #aee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-credit {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  color: #bbe1ff;
}

/* ===== Go to Top button ===== */
.top {
  position: fixed;
  
  bottom: 5%;
  right: 5%;
}

  



.top a {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.top a:hover {
  background-color: #0056b3;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* ===== Images ===== */
img {

  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
