/*  Different browsers have default styles that can mess up your layout. Use a CSS reset at the start of your CSS file:*/

/* 
* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*/


/*navigation bar*/
/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background: #f2f2f2;
}
nav{
  background: #1b1b1b;
}
nav:after{
  content: '';
  clear: both;
  display: table;
}
nav .logo{
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 60px;
  display: none;
}
nav ul{
  float: left;
  list-style: none;
  margin-right: 40px;
  position: relative;

}
nav ul li{
  float: left;
  /*if problems occur, change display to inline-block*/
  display: left;
  background: #1b1b1b;
  margin: 0 5px;

}
nav ul li a{
  color: white;
  text-decoration: none;
  line-height: 70px;
  font-size: 18px;
  padding: 8px 15px;
}
nav ul li a:hover{
  color: cyan;
  border-radius: 5px;
  box-shadow: 0 0 5px #33ffff, 0 0 5px #66ffff;
}
nav ul ul li a:hover{
  color: cyan;
  box-shadow: none;
}
nav ul ul{
  position: absolute;
  top: 90px;
  border-top: 3px solid cyan;
  opacity: 0;
  visibility: hidden;
  transition: top .3s;
}
nav ul ul ul{
  border-top: none;
}
nav ul li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
}
nav ul ul li{
  position: relative;
  margin: 0px;
  width: 305px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
nav ul ul li a{
  line-height: 50px;
}
nav ul ul ul li{
  position: relative;
  top: -70px;
  left: 150px;
}
.fa-plus{
  margin-left: 40px;
  font-size: 15px;
}


/* body */
.body {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: medium;
  padding: 1000px;
}



/*container*/
.container {
  margin: auto;
  text-align: center;
}


/* footer */
.footerContainer {
  color: black;
  margin: auto;
  text-align: center;
  padding: 100px;
  position: fixed;
  margin-top: 30px;
}


/* hospital MS page*/
.HMSscreenshot{
  margin-top: 20px;
  width: 720px;
  height: 450px;
  border-radius: 5px;
}

/*education*/
.subjectResults {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically (optional) */
  height: 17vh; /* Makes sure it fills the viewport (optional) */
}

.moduleResults {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically (optional) */
  height: 40vh; /* Makes sure it fills the viewport (optional) */
}

/*Train carriage cam */
.TrainCarriageCamFront{
  width: 300px;
  height: 400px;
  border-radius: 20px;
}
.TrainCarriageCam{
  width: 300px;
  height: 460px;
  border-radius: 20px;
}

/*Contact page*/

.ContactContainer{
  display: flex;
  flex-direction: row;
  margin: auto;
  text-align: center;
}
.profilePic{
  margin-top: 20px;
  height: 300px;
  width: 250px;
  margin-right: 50px;
  margin-left: 20px;

  border-radius: 25px;
}
.contactInfo{
  flex-direction: row;
  margin-left: 100px;
  
}


/* ------------------------------------------------------------------------- */


/*Vehicle Rental System Screen*/
/* Make sure colors appear */
div.SystemsProgrammingFunctionalityList {
  display: flex;
  justify-content: center; /* Centers the list */
  align-items: center;
  text-align: center;
  padding: 20px; /* Adds space around */
}

/* Centering the bullet points */
ul.SystemsProgrammingFunctionalities {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the text and bullets */
  text-align: left; /* Keeps text properly aligned */
  background-color: #1e1e1e;
  color: white;
  padding: 20px;
  border-radius: 25px; /* Adds some styling */
}

/* Ensuring bullet points are aligned with text */
ul.SystemsProgrammingFunctionalities li {
  display: list-item;
  list-style-position: inside; /* Moves bullets inside */
  text-align: left; /* Ensures they stay aligned */
  width: max-content; /* Prevents unnecessary stretching */
}

/* Train Carriage Cam */

.TrainCarriageCamFront{
  display: flex;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.TrainCarriageCam{
  display: flex;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.SectionOneCarriageCamImages{
  
}

