
    body {
      margin: 0;
      padding: 0;
       font-family: 'Segoe UI', sans-serif;
      
    }

    .container-fluid {
      padding: 15px;
    }

    .carousel-container {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #ccc;
      background-color: #FFF1E8;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      height: 500px;
    }

    .carousel-inner {
      height: 100%;
      background-color: #FFF1E8;
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .notification-container {
      padding: 10px 15px;
      background: #FFF1E8;
      border-radius: 10px;
      border: 1px solid #ccc;
      height: 500px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .underline-heading {
      font-size: 20px;
      font-weight: bold;
      color: #00695c;
      text-align: center;
      border-bottom: 2px solid #E41B17;
      padding-bottom: 5px;
      margin-bottom: 10px;
      position: relative;
    }

    .underline-heading::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -5px;
      width: 100px;
      height: 4px;
      background-color: #f2c200;
    }

    .notification-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .notification-list li:nth-child(odd) {
      background-color: #f9f9f9;
    }

    .notification-list li:nth-child(even) {
      background-color: #e6f7ff;
    }

    .notification-list li {
      padding: 8px 12px;
      border-radius: 6px;
      margin-bottom: 6px;
    }

    .notification-list p {
      margin: 0;
      color: #070f52;
      font-size: 14px;
      line-height: 1.8;
      text-align: justify;
    }

    marquee {
      height: 100%;
    }

    /* Responsive fix */
    @media (max-width: 768px) {
      .col-md-9, .col-md-3 {
        width: 100%;
      }
    }
 