body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa;
    margin: 0;
    padding: 0;
  }
  
  .logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  .header-text {
    text-align: center;
    font-size:36px;
    font-weight: 600;
    color: #3a3a3a;
    padding: 15px 0;
  }

  .navbar-custom {
    background-color: midnightblue;
  }

  .navbar-light .navbar-brand {
    color: white;
    font-weight: bold;
  }
  .navbar-light .navbar-nav .nav-link {
    color: white;
  }
  .navbar-light .navbar-nav .nav-link:hover {
    color: lightgray;
  }

  .navbar-toggler-icon {
    background-color: white;
  }
  
  .navbar-toggler {
    border-color: white;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .image-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  .left-div {
    width: 75%;
    padding-right: 20px;
  }
  .right-div {
    width: 20%;
    text-align: center;
  }
  .right-div img {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 3px 4px 13px -3px rgba(0, 0, 0, 0.75);
  }

  table {
    width: 100%;
    border-collapse: collapse;
     margin-top: 30px;
  }
  th,
  td {
    padding: 12px;
    text-align: center;
    font-size: 14px;
  }
  th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  td {
    background-color: #fafafa;
  }
  tr:nth-child(even) td {
    background-color: #f9f9f9;
  }
  button {
    padding: 8px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  button:hover {
    background-color: #45a049;
  }

  footer {
    background-color: #222;
    color: blue;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    position: relative;
  }
  footer a {
    color: #ddd;
    text-decoration: none;
  }
  footer a:hover {
    color: lightgray;
  }

  .vertical-marquee {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .vertical-marquee-text {
    position: absolute;
    top: 100%;
    animation: scrollUp 10s linear infinite;
  }

  @keyframes scrollUp {
    0% {
      top: 100%;
    }
    100% {
      top: 100%;
    }
  }

  /* Media Queries for Mobile Responsiveness */
  @media (max-width: 768px) {
    .image-container {
      flex-direction: column;
    }
    .left-div, .right-div {
      width: 100%;
    }
    .header-text h3 {
      font-size: 20px;
    }
    .logo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }
  }
  .animated-text {
    font-size: 2rem;
    font-weight: bold;
    background-image: linear-gradient(90deg, red, yellow, green, blue, purple);
    background-clip: text;
    color: transparent;
    animation: colorAnimation 5s infinite alternate;
    padding: 10px;
}

@keyframes colorAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.side-img{
  width: 100px;
  border-color: whitesmoke;
  border: 2px solid;
  box-shadow: 3px 4px 13px -3px rgba(0, 0, 0, 0.75);
}