/* styles.css */
body {
  font-family: 'Arial', sans-serif;
  background-color: #1a1a1a; /* Fallback dark background */
  color: #e0e0e0; /* Light text */
  margin: 0;
  padding: 20px;
  /* Add a background image */
  background-image: url('www.bilal-qudah.com/grad_proj/images/background.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Ensures the background stays fixed while scrolling */
}

header {
  background: rgba(42, 42, 42, 0.9); /* Semi-transparent dark container */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.3); /* Lighter blue glow effect */
}

.university-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  width: 80px; /* Adjust logo size */
  height: auto;
  margin-right: 20px;
}

.university-info h1 {
  color: #00ccff; /* Lighter blue */
  font-size: 2em;
  margin: 0;
}

.university-info h2 {
  color: #e0e0e0; /* Light text */
  font-size: 1.2em;
  margin: 5px 0 0;
}



h1 {
  text-align: center;
  color: #00ccff; /* Lighter blue */
  font-size: 2.5em;
  margin-bottom: 20px;
}

h1 i {
  margin-right: 10px;
  color: #00ccff; /* Lighter blue for the shield icon */
}

.year {
  margin-bottom: 20px;
}

.year-title {
  background-color: rgba(27, 27, 27, 0.9); /* Semi-transparent dark gray */
  color: #00ccff; /* Lighter blue */
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
}

.year-title i {
  margin-right: 10px;
  color: #00ccff; /* Lighter blue for the calendar icon */
}

.year-title:hover {
  background-color: rgba(68, 68, 68, 0.9); /* Slightly lighter gray */
}

.projects {
  display: none; /* Hidden by default */
  margin-top: 10px;
}

.project {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #444; /* Dark border */
  border-radius: 5px;
  background-color: rgba(51, 51, 51, 0.9); /* Semi-transparent dark gray */
  
}

.project:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 204, 255, 0.3); /* Lighter blue glow */
}

.project-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #00ccff; /* Dark text */
  font-size: 1.5em;
  margin: 0;
}

.project-title i {
  margin-right: 10px;
  color: #00ccff; /* Lighter blue for project icons */
}


.project-details {
  display: none; /* Hidden by default */
  margin-top: 10px;
  padding: 10px;
  background-color: rgba(42, 42, 42, 0.9); /* Semi-transparent darker gray */
  border-left: 3px solid #00ccff; /* Lighter blue accent */
}

a {
  color: #00ccff; /* Lighter blue */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a i {
  margin-right: 5px;
}

.video-details {
  margin-top: 10px;
}

.video-summary {
  background-color: #00ccff; /* Lighter blue */
  color: #1a1a1a; /* Dark text */
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  display: flex;
  align-items: center;
  list-style: none; /* Remove default arrow */
}

.video-summary::-webkit-details-marker {
  display: none; /* Hide default arrow in WebKit browsers */
}

.video-summary i {
  margin-right: 10px;
}

.video-summary:hover {
  background-color: #00b8e6; /* Slightly darker lighter blue */
}

.video-container {
  margin-top: 20px;
}

.video-container h4 {
  color: #00ccff; /* Lighter blue */
  font-size: 1.2em;
  margin-bottom: 10px;
}

video {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 204, 255, 0.3); /* Lighter blue glow */
}



/* Footer */
.site-footer {
color: #e0e0e0; 
padding: 10px;
text-align: center;
font-size: 0.9em;
width: 100%;
flex-shrink: 0;
position: relative; 
bottom: 0;
left: 0;
}

/* Layout */
.three-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}


  
  .main_container {
    flex: 2;
    min-width: 33%; /* 300px; */
    max-width: 93%; /* 650px;*/
    width: 100%;
    background: rgba(42, 42, 42, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
  }
  
  /* Sidebar or secondary container */
  .container {
    flex: 1;
    min-width: 150px;
    max-width: 25%; /*250px;*/
    width: 100%;
    background: rgba(42, 42, 42, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
    align-self: flex-start;
  }

  /* footer container */
  .footerContainer {
    flex: 1;
    min-width: 150px;
    max-width: 95%; /*250px;*/
    width: 100%;
    background: rgba(42, 42, 42, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
    align-self: flex-start;
    margin: 20px 10px 10px 10px;   /* top: 10, right: 10px, bottom: 10px, left: 10px */
    position: bottom;  /* relative; */
    text-align: center;

    overflow: hidden;
  }

  .container h2{
    font-size: medium;
  }

  .main_container h1{
    font-size: larger;
  }

.center-panel{
  flex: 2;
}


/* Navigation arrows */
.nav-arrow {
  font-size: 24px;
  cursor: pointer;
  margin: 10px;
  color: #007BFF; /* Blue color for arrows */
}

/* Hide extra students/doctors initially */
.side-section .person {
  display: none;
}

/* Show the current person */
.side-section .person.active {
  display: block;
}

/* Styling for the person cards */
.side-section .person img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.side-section .person h3 {
  font-size: 18px;
  margin-top: 10px;
}

.side-section .person p {
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
  overflow: hidden; /* Hide any overflowing bio content */
}

/* Spacer between sections */
.side-section + .projects-section + .side-section {
  margin-left: 20px; /* Adds space between the sections */
}


.news-banner {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00ccff;
  box-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
  color: #00ccff;
  padding: 12px 24px;
  font-size: 16px;
  font-family: 'Courier New', monospace;
  border-radius: 10px;
  text-align: left;
  max-width: 95%; /* 800px;*/
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.news-banner::before {
  content: "\f0f6"; /* Font Awesome news icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 20px;
  color: #00ccff;
}

.news-text-wrapper {
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: plaintext;
  padding-right: 100%;
  will-change: transform;
}

.news-date {
  font-size: 12px;
  color: #66e0ff;
  margin-left: 10px;
}



@keyframes scrollTextRTL {
  0% {
    transform: translateX(90%);
  }
  100% {
    transform: translateX(-90%);
  }
}
@keyframes scrollTextLTR {
  0% {
    transform: translateX(-90%);
  }
  100% {
    transform: translateX(90%);
  }
}

@media (max-width: 500px) {
  .three-column-layout {
    flex-direction: column;
    gap: 10px;
  }

  .nav-arrow {
    font-size: 18px;
    margin: 5px;
  }

  .main_container, .container {
    max-width: 100%;
    padding: 10px;
  }
}