    @import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');

    body {
      margin: 0;
      box-sizing: border-box;
    }
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("images/background/background-image.jpg");
      background-size: cover;
      opacity: 0.2; /* Adjust opacity here */
      z-index: -1;
      background-repeat: no-repeat;
    }

    /* CSS for header */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #f5f5f5;
    }

    .header .logo {
      font-size: 25px;
      font-family: 'Sriracha', cursive;
      color: #000;
      text-decoration: none;
      margin-left: 30px;
    }

    .nav-items {
      display: flex;
      justify-content: space-around;
      align-items: center;
      background-color: #f5f5f5;
      margin-right: 20px;
    }

    .nav-items a {
      text-decoration: none;
      color: #000;
      padding: 35px 20px;
    }

    /* CSS for main element */
    .intro {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: auto;
      height: auto;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),;
      background-size: auto;
      background-position: center;
      background-repeat: no-repeat;
    }

    .intro h1 {
      font-family: sans-serif;
      font-size: 60px;
      color: #fff;
      font-weight: bold;
      text-transform: uppercase;
      margin: 0;
    }

    .intro p {
      font-size: 20px;
      color: #d1d1d1;
      text-transform: uppercase;
      margin: 20px 0;
    }

    .intro button {
      background-color: #5edaf0;
      color: #000;
      padding: 10px 25px;
      border: none;
      border-radius: 5px;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4)
    }

    .achievements {
      display: flex;
      justify-content: space-around;
      align-items: center;
      }

    .achievements .work {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      
    }

    .achievements .work i {
      width: fit-content;
      font-size: 50px;
      color: #333333;
      border-radius: 50%;
      border: 2px solid #333333;
      
    }

    .achievements .work .work-heading {
      font-size: 20px;
      color: #333333;
      text-transform: uppercase;
      margin: 1px 0;
    }

    .achievements .work .work-text {
      font-size: 15px;
      color: #585858;
      margin: 1px 0;
    }

    .about-me {
      display: flex;
      justify-content: center;
      align-items: center;
      border-top: 2px solid #eeeeee;
    }

    .about-me img {
      width: 500px;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .about-me-text h2 {
      font-size: 30px;
      color: #333333;
      text-transform: uppercase;
      margin: 0;
      padding-left: 30px;
      padding-right: 5px;
    }

    .about-me-text p {
      font-size: 15px;
      color: #585858;
      margin: 10px 0;
      padding-left: 30px;
      padding-right: 5px;
    }

    .visionnmission {
      display: flex;
      justify-content: center;
      align-items: center;
      border-top: 2px solid #eeeeee;
    }

    .visionnmission img {
      width: 500px;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .visionnmission-text h2 {
      font-size: 30px;
      color: #333333;
      text-transform: uppercase;
      margin: 0;
      padding-left: 30px;
      padding-right: 5px;
    }

    .visionnmission-text p {
      font-size: 15px;
      color: #585858;
      margin: 10px 0;
      padding-left: 30px;
      padding-right: 5px;
    }
     .visionnmission-text ul {
      padding-left: 50px;
      padding-right: 5px;
    }


    .body {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1% 1%;
      border-top: 2px solid #eeeeee;
    }

    .container {
      width: 100%;
      overflow: auto;
    }


    /* CSS for footer */
    .footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #033201;
      padding: 2% 2%;
    }

    .footer .copy {
      color: #fff;
    }

    .bottom-links {
      display: flex;
      justify-content: space-around;
      align-items: center;
  
    }

    .bottom-links .links {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    
    }

    .bottom-links .links span {
      font-size: 20px;
      color: #fff;
      text-transform: uppercase;
      margin: 10px 0;
      justify-content: center;
      align-items: center;
      text-align: center;

    }

    .bottom-links .links a {
      text-decoration: none;
      color: #a1a1a1;
     
    }

    .bottom-links .links i {
      justify-content: center;
      align-items: center;
      text-align: center;
    }



    #navbar {
      position: sticky;
      top: 0;
      overflow: hidden;
      background-color: #333;
    }

#navbar a {
      float: left;
      display: block;
      color: #f2f2f2;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
      font-size: 17px;
    }

#navbar a:hover {
      background-color: #ddd;
      color: black;
    }

#navbar a.active {
      background-color: #04AA6D;
      color: white;
    }

    /* Blinking effect for marquee */
    .blink {
                animation: blinker 4s linear infinite;
                color: red;
                font-family: sans-serif;


            }
            @keyframes blinker {
                50% {
                    opacity: 10;
                }
            }


#fade-in-ul li {
  opacity: 0;
  animation: fadeIn 8s forwards ease-in-out infinite alternate;
  margin-left: 0;
}

#fade-in-ul li:nth-child(1) { animation-delay: 0s; }
#fade-in-ul li:nth-child(2) { animation-delay: 0.3s; }
#fade-in-ul li:nth-child(3) { animation-delay: 0.6s; }
#fade-in-ul li:nth-child(4) { animation-delay: 0.9s; }
#fade-in-ul li:nth-child(5) { animation-delay: 1.2s; }
#fade-in-ul li:nth-child(6) { animation-delay: 1.5s; }
#fade-in-ul li:nth-child(7) { animation-delay: 1.8s; }
#fade-in-ul li:nth-child(8) { animation-delay: 1.8s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.table{
 width: 100%;
 border-collapse: collapse;
 table-layout: auto;
}

.table td {
  vertical-align: top;
  font-size: 12pt;
}

.table th{
  width:25%;
  font-size: 15px;
  text-align: center;
}

