@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* navbar start here */

/* lab facilities */

.lab-facilities {
  text-align: center;
  padding: 50px 20px;
}

.lab-facilities h1 {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.lab-facilities h1 span {
  color: #28a745; /* Green color for FACILITIES */
}

.lab-facilities hr {
  width: 50px;
  height: 3px;
  background: #000;
  margin: 15px auto;
  border: none;
}

/* Facility Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.facility-item {
  background: #cce7f5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.facility-item:hover {
  transform: translateY(-10px);
}

.facility-item .icon {
  background: #28a745;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
  font-size: 2rem;
}

.facility-item h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.facility-item p {
  color: #555;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-grid {
      flex-direction: column;
      align-items: center;
  }

  .facility-item {
      max-width: 100%;
  }
}

/* header section end */

/* Box Responsive */

.body-section{
  background-color:#d9d9d9;
}

.body-section h2{
  color: #000000;
  text-align: center;
  font-size: 30px;
}
.section {
  padding: 50px;
  padding-left: 5px;
  margin-right: 30px;
}
.container {
  max-width: 1200px;
  margin: auto;
}

.container h1{
  color: #000;
}
.grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 350px));
  grid-gap: 15px 15px;
  justify-content: center;
  align-items: baseline;
}

.grid-row .grid-item span {
  padding: 10px;
  line-height: 1;
}
.grid-row .grid-item h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.grid-row .grid-item:hover {
  filter: contrast(0.7);
}
.grid-row .grid-item {
  transition: filter 0.5s ease;
  display: flex;
  cursor: pointer;
  background: var(--light);
  box-shadow: var(--shadow);
  color: var(--dark);
  text-align: center;
  flex-direction: column-reverse;
  align-items: stretch;
}

/* Responsive Box End */
.head a{
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    font-variant:initial;
    text-align: center;
    margin-inline: 5px;
    margin-left: 20px;
    margin-top: 50%;
    line-height: 33px;   
}

.head a:hover{
    color: turquoise;
    transition:all 0.2s ease-in-out;
    border-right-style: solid;
    border-left-style: solid;
    border-right-color: yellow;
    border-left-color: rgb(217, 255, 0);
   /* border-top-color: rgb(0, 255, 85);*/
    /*border-bottom-color: rgb(255, 123, 0);*/
    border-right-width: 2px;
    border-left-width: 2px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-radius: 8px;
   /* margin-right: 8px;
    margin-left: 5px;*/

}

.left{
    background-color: rgb(2, 58, 11);
    width:25%;
    /*float: inline-end;*/
    height: 448px;
    margin-top: 10px;
    justify-content: center;
    margin-left: 10px;
}

.left a{
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;   
    align-items: center;
    margin-left: 12%;
    line-height: 15px;
   
    transition: all 0.3s ease-in-out;
}

.left a:hover{
    color: aqua;
    font-size: large;
}

.img-box{
    border-color: black;
    border-style: solid;
    width: 830px;
    height: 447px;
    margin-top: -805px;
    margin-left: 400px;
    border-radius: 5px;
}

table{
    color: black;
    border-color: rgb(0, 0, 0);
    border-radius: 5px;
    border-spacing: 0;
    text-align: center;
    align-items: center;
    width: 1200px;
    margin-left: 4px;
}

table th{
    /* background-color: rgb(2, 61, 0); */
    color: white;
    font-weight: 100;
}

h2{
    color: teal;
    justify-content: center;
    margin-top: 18px;
    margin-left: 5px;
    margin-bottom: 8px;
}

.rwd-table {
  margin: auto;
  min-width: 300px;
  max-width: 100%;
  border-collapse: collapse;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #428bca;
  color: #fff;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: .5em;
}

.rwd-table td:last-child {
  margin-bottom: .5em;
}

.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
}

.rwd-table tr {
  border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
  padding: .5em 1em;
}

@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
  .img-box{
    float: left;
    margin-top: -352px;
    margin-left: 20px;
    width: 440px;
    height: 350px;
    overflow: auto;
    box-shadow: 2px 2px 15px 2px;
  }

  img{
    width: 430px;
    height: 340px;
    display: flex;
    margin-left: 2px;
    margin-top: 2px;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
  
}

/* Notification Table */

.rwd-table-2{
    margin: auto;
  min-width: 300px;
  max-width: 350px;
  border-collapse: collapse;
  margin-left: 20px;
}

.rwd-table-2 tr:first-child {
    border-top: none;
    background: #428bca;
    color: #fff;
  }
  
  .rwd-table-2 tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f9fc;
  }

  .rwd-table-2 tr:nth-child(odd):not(:first-child) {
    background-color: #ebf3f9;
  }
  
  .rwd-table-2 th {
    display: none;
  }
  
  .rwd-table-2 td {
    display: block;
  }
  
  .rwd-table-2 td:first-child {
    margin-top: .5em;
  }
  
  .rwd-table-2 td:last-child {
    margin-bottom: .5em;
  }
  
  .rwd-table-2 td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 120px;
    display: inline-block;
    color: #000;
  }
  
  .rwd-table-2 th,
  .rwd-table-2 td {
    text-align: left;
  }
  
  .rwd-table-2 {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
  }
  
  .rwd-table-2 tr {
    border-color: #bfbfbf;
  }
  
  .rwd-table-2 th,
  .rwd-table-2 td {
    padding: .5em 1em;
  }

  /* media screen */
  @media screen and (max-width: 601px) {
    .rwd-table-2 tr:nth-child(2) {
      border-top: none;
    }
  }
  @media screen and (min-width: 600px) {
    .rwd-table-2 tr:hover:not(:first-child) {
      background-color: #d8e7f3;
      
    }
    .rwd-table-2 td:before {
      display: none;
    }
    .rwd-table-2 th,
    .rwd-table-2 td {
      display: table-cell;
      padding: .25em .5em;
    }
    .rwd-table-2 th:first-child,
    .rwd-table-2 td:first-child {
      padding-left: 0;
    }
    .rwd-table-2 th:last-child,
    .rwd-table-2 td:last-child {
      padding-right: 0;
    }
    .rwd-table-2 th,
    .rwd-table-2 td {
      padding: 1em !important;
    }
  }

/* THE END OF THE IMPORTANT STUFF */

/* Basic Styling */
body {
background: #4B79A1;
background: -webkit-linear-gradient(to left, #4B79A1 , #283E51);
background: linear-gradient(to left, #4B79A1 , #283E51);        
}
h1 {
  text-align: center;
  font-size: 2.4em;
  color: #2698c5;
}
.container {
  display: block;
  text-align: center;
}
h3 {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.5em;
  color: #000000;
}
h3:before {
  content: "\25C0";
  position: absolute;
  left: -50px;
  -webkit-animation: leftRight 2s linear infinite;
  animation: leftRight 2s linear infinite;
}
h3:after {
  content: "\25b6";
  position: absolute;
  right: -50px;
  -webkit-animation: leftRight 2s linear infinite reverse;
  animation: leftRight 2s linear infinite reverse;
}
@-webkit-keyframes leftRight {
  0%    { -webkit-transform: translateX(0)}
  25%   { -webkit-transform: translateX(-10px)}
  75%   { -webkit-transform: translateX(10px)}
  100%  { -webkit-transform: translateX(0)}
}
@keyframes leftRight {
  0%    { transform: translateX(0)}
  25%   { transform: translateX(-10px)}
  75%   { transform: translateX(10px)}
  100%  { transform: translateX(0)}
}
/* Footer Section Start */
  /* foooter section */

/* footer section */
footer {
  background-color: #4caf50; /* Green background */
  color: white; /* White text */
  text-align: center; /* Centered text */
  padding: 20px 10px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-menu {
  margin-bottom: 20px;
  border-bottom: 2px solid #fff;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  .footer-menu a {
    display: block;
    margin: 5px 0;
  }
}
