
    /* Navbar colors */
    .navbar {
      background-color: #1a2b52;
    }
    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 500;
      padding: 12px 18px;
    }
    .navbar-nav .nav-item:hover .nav-link {
      background-color: #ff0000;
      color: #fff !important;
    }

    /* Dropdown hover effect */
    .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }

    .dropdown-menu {
      background-color: #1a2b52;
      border: none;
      border-radius: 0;
    }
    .dropdown-menu .dropdown-item {
      color: white;
    }
    .dropdown-menu .dropdown-item:hover {
      background-color: #ff0000;
    }

    .navbar-brand i {
      margin-right: 5px;
    }


    /* marquee start */

     .marquee-bar {
      background-color: #f4d5c1;
      color: #800000;
      font-weight: 500;
      padding: 8px 0;
      overflow: hidden;
      position: relative;
    }

    .marquee-content {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 18s linear infinite;
    }

    /* Stop scrolling on hover */
    .marquee-bar:hover .marquee-content {
      animation-play-state: paused;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    .marquee-content a {
      color: #800000;
      text-decoration: none;
      margin: 0 8px;
      font-weight: 600;
    }

    .marquee-content a:hover {
      text-decoration: underline;
    }

    .marquee-icon {
      color: #800000;
      margin-right: 10px;
      font-size: 1rem;
    }
    /* marquee end */

    /* crousal start */
    /* Left Sidebar */
    .left-box {
      background-color: #f4f4f4;
      border: 1px solid #ddd;
      padding: 10px;
    }

    .left-box h5 {
      font-weight: bold;
      color: #333;
    }

    .left-box h5 span {
      color: red;
    }

    .left-box .btn {
      background-color: #d00;
      color: #fff;
      font-size: 14px;
      padding: 3px 8px;
      border: none;
      border-radius: 2px;
      margin-left: 5px;
    }

    .left-box a {
      color: #7a0a0a;
      text-decoration: none;
      font-weight: 500;
    }

    .left-box a:hover {
      text-decoration: underline;
    }

    .left-item {
      background-color: #e9ecef;
      padding: 8px;
      margin: 5px 0;
    }

    /* Carousel */
    .carousel img {
      height: 360px;
      object-fit: cover;
    }

    /* Right Sidebar */
    .right-box {
      background-color: #fff;
      border: 1px solid #ddd;
      padding: 10px;
    }

    .right-box .btn {
      background-color: #d00;
      color: #fff;
      font-size: 14px;
      border-radius: 2px;
      margin: 0 2px;
      border: none;
      padding: 3px 8px;
    }

    .notice-item {
      border-bottom: 1px solid #eee;
      padding: 6px 0;
      font-size: 14px;
    }

    .notice-item i {
      color: #b10000;
      margin-right: 6px;
    }

    .notice-item a {
      text-decoration: none;
      color: #000;
    }

    .notice-item a:hover {
      text-decoration: underline;
    }

    /* crousal end */

     h4 {
      color: #b30000;
      font-weight: bold;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 25px;
    }
    .video-section {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 0 20px 20px;
    }
    .video-card {
      flex: 0 0 260px;
      background: #fff;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s;
    }
    .video-card:hover {
      transform: scale(1.05);
    }
    .video-card img {
      width: 100%;
      border-radius: 10px;
      height: 150px;
      object-fit: cover;
    }
    .video-card p {
      margin-top: 10px;
      font-size: 15px;
      color: #333;
    }
    /* Hide scrollbar for clean look */
    .video-section::-webkit-scrollbar {
      display: none;
    }

    .about-section {
      background-color: #fff7f6;
      padding: 40px 20px;
    }
    .about-title {
      font-weight: bold;
      color: #b30000;
      margin-bottom: 15px;
    }
    .about-section p {
      color: #333;
      line-height: 1.7;
    }
    .btn-custom {
      background-color: #b30000;
      color: #fff;
      border: none;
      margin-right: 10px;
      padding: 8px 18px;
      border-radius: 3px;
      transition: background-color 0.3s;
    }
    .btn-custom:hover {
      background-color: #990000;
    }
    .authorities h5 {
      color: #b30000;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .authority-card img {
      width: 100%;
      border-radius: 5px;
      height: 220px;
      object-fit: cover;
    }
    .authority-card p {
      margin: 5px 0;
      text-align: center;
    }
    .authority-name {
      font-weight: 600;
      font-size: 16px;
      margin-top: 10px;
    }
    .authority-role {
      font-size: 14px;
      color: #555;
    }
     .section-title {
      text-align: center;
      color: #b30000;
      font-weight: bold;
      margin-bottom: 25px;
    }
    .important-websites {
      background: #fff;
      padding: 30px 20px;
      border-bottom: 1px solid #eee;
    }
    .important-websites img {
      max-height: 60px;
      width: auto;
      margin: 10px;
      transition: transform 0.3s ease;
    }
    .important-websites img:hover {
      transform: scale(1.05);
    }

    .university-news {
      background-color: #fdfbf9;
      padding: 50px 20px;
      text-align: center;
    }
    .news-item {
      padding: 30px 0;
      transition: transform 0.3s ease;
      border-radius: 8px;
    }
    .news-item:hover {
      transform: translateY(-5px);
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .news-item i {
      font-size: 40px;
      color: #333;
      margin-bottom: 10px;
    }
    .news-item h6 {
      color: #b30000;
      font-weight: bold;
    }

     .section-title {
      text-align: center;
      color: #b30000;
      font-weight: bold;
      margin-bottom: 25px;
    }

    .important-websites {
      background: #fff;
      padding: 30px 20px;
      overflow: hidden;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
    }

    .marquee-track {
      display: flex;
      width: calc(250px * 14); /* total width = number of logos × logo width */
      animation: scroll 25s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      flex: 0 0 auto;
      margin: 0 20px;
    }

    .marquee-item img {
      width: 250px;
      height: 100px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .marquee-item img:hover {
      transform: scale(1.05);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .uni-section-title {
      font-weight: bold;
      border-bottom: 2px solid #ccc;
      margin-bottom: 15px;
      padding-bottom: 5px;
    }

    .uni-section-title span {
      color: #b30000;
    }

    /* Custom Marquee */
    .uni-scroll-box {
      height: 400px;
      overflow: hidden;
      position: relative;
    }

    .uni-scroll-inner {
      position: absolute;
      width: 100%;
      animation: uni-scroll-up 18s linear infinite;
    }

    .uni-scroll-box:hover .uni-scroll-inner {
      animation-play-state: paused;
    }

    @keyframes uni-scroll-up {
      0% { top: 100%; }
      100% { top: -100%; }
    }

    .uni-scroll-item {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .uni-scroll-item img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 5px;
    }

    .uni-scroll-item p {
      margin: 0;
      font-size: 14px;
    }

    /* Carousel Styles */
    .uni-carousel img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 5px;
    }

    .uni-carousel .carousel-caption {
      background: rgba(0,0,0,0.6);
      padding: 10px;
      border-radius: 5px;
    }

    .uni-carousel .carousel-control-prev-icon,
    .uni-carousel .carousel-control-next-icon {
      background-color: #b30000;
      border-radius: 50%;
    }

    .uni-btn {
      background-color: #b30000;
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 4px;
      font-size: 14px;
    }

     /* FEATURES SECTION */
    .uni-features {
      text-align: center;
      padding: 60px 0;
      background-color: #fdfdfd;
    }

    .uni-features h2 {
      font-weight: 700;
      color: #d60000;
      margin-bottom: 40px;
    }

    .uni-feature-item {
      text-align: center;
      transition: all 0.3s ease;
    }

    .uni-feature-item i {
      font-size: 40px;
      color: #333;
      margin-bottom: 10px;
    }

    .uni-feature-item p {
      color: #d60000;
      font-weight: 600;
      margin: 0;
    }

    .uni-feature-item:hover {
      transform: scale(1.1);
    }

    /* FOOTER */
    .uni-footer {
      background-color: #1d1f2a;
      color: #ccc;
      padding: 50px 0;
    }

    .uni-footer h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .uni-footer a {
      color: #aaa;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      font-size: 15px;
    }

    .uni-footer a:hover {
      color: #fff;
    }

    .uni-footer .social-icons i {
      font-size: 24px;
      margin-right: 15px;
      color: #ccc;
      transition: 0.3s;
    }

    .uni-footer .social-icons i:hover {
      color: #d60000;
    }

    .uni-footer img {
      width: 80px;
      margin-bottom: 15px;
    }

    .uni-footer hr {
      border-color: rgba(255, 255, 255, 0.1);
    }