    @font-face {
font-family: 'SmartNudi1';
  src: url('../fonts/SmartNudi1.ttf');
}


    body {
      margin: 0;
      font-family: SmartNudi1;
    }
    /* Navigation Bar */
    .navbar {
      background-color: #333;
      color: white;
      padding: 10px;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
    }
    /* Main Layout */
    .main-content {
      display: flex;
      padding: 20px;
    }
    .left-section {
      flex: 2;
      padding: 20px;
    }
    .right-section {
      flex: 1;
      padding: 20px;
      background-color: #f4f4f4;
      border-left: 2px solid #ddd;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
    }
    .ticker {
      overflow: hidden;
      height: 100px;
      position: relative;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 10px;
    }
    .ticker-content {
      position: absolute;
      animation: slide 150s linear infinite;
    }
    @keyframes slide {
      0% {
        top: 100%;
      }
      100% {
        top: -100%;
      }
    }
    /* Static Images Section */
    .static-images {
      display: flex;
      justify-content: space-around;
      padding: 20px;
    }
    .static-images img {
      width: 30%;
      height: auto;
      border-radius: 5px;
    }
    /* Footer */
    .footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 10px;
      margin-top: 20px;
    }

    
    /* Header Styling */
    .navbar {
      background-color: #4CAF50; /* Green background */
      color: white; /* Contrast text */
      padding: 15px 10px;
      text-align: center;
    }
    .navbar a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-size: 18px;
    }
    .navbar a:hover {
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      .navbar a {
        display: block;
        margin: 5px 0;
      }
    }

     /* Logo Section */
    .logo {
      background-color: #4CAF50; /* Green background */
      text-align: center;
      padding: 10px;
    }
    .logo img {
      height: 30px; /* Adjust logo size */
      width: auto;
    }
    .logo h1 {
      color: white;
      margin: 10px 0 0;
      font-size: 4px;
      font-weight: bold;
    }
.right-section {
      flex: 1;
      padding: 20px;
      background-color: #f4f4f4;
      border-left: 2px solid #ddd;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
    }
    .ticker {
      overflow: hidden;
      height: 100px;
      position: relative;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 10px;
    }
    .ticker-content {
      position: absolute;
      animation: slide 10s linear infinite;
    }
    @keyframes slide {
      0% {
        top: 100%;
      }
      100% {
        top: -100%;
      }
    }

    /*nav menu*/

    .container-fluid {
            width: 100%;
            padding: 0;
            margin: 0;
        }
        .navbar {
            background-color: #28a745; /* Green background */
            color: white;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .navbar .brand {
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        .navbar-toggler {
            display: none;
            background-color: white;
            border: none;
            padding: 8px 12px;
            font-size: 18px;
            cursor: pointer;
            color: #28a745;
            border-radius: 4px;
        }
        .menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        .menu li {
            margin: 0;
        }
        .menu a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: white; /* White text */
            font-weight: bold;
            transition: background-color 0.3s, color 0.3s;
        }
        .menu a:hover {
            background-color: #218838; /* Darker green on hover */
        }
        .menu .active a {
            background-color: #1e7e34; /* Even darker green for active */
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #28a745;
            }
            .menu.show {
                display: flex;
            }
            .navbar-toggler {
                display: inline-block;
            }
        }

    /*end nav menu*/


    /*sliding bar*/

    
    .scrollable-list {
            max-height: 300px; /* Set the maximum height */
            overflow-y: auto; /* Enable vertical scroll */
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .scrollable-list h3 {
            margin-top: 0;
            color: #007bff;
        }

        .scrollable-list ul {
            padding: 0;
            margin: 0;
            list-style-type: none;
        }

        .scrollable-list li {
            padding: 10px;
            margin: 0;
        }

        /* Alternating row colors */
        .scrollable-list li:nth-child(odd) {
            background-color: #f9f9f9; /* Light background for odd rows */
        }

        .scrollable-list li:nth-child(even) {
            background-color: #ffffff; /* White background for even rows */
        }

        .scrollable-list a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
        }

        .scrollable-list a:hover {
            text-decoration: underline;
            color: #007bff;
        }

        /* Custom scrollbar styling */
        .scrollable-list::-webkit-scrollbar {
            width: 10px;
        }

        .scrollable-list::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }

        .scrollable-list::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .scrollable-list::-webkit-scrollbar-track {
            background: #f4f4f9;
        }

    /* sliding bar end*/