    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #eaf7ff;
    }
    .scrolling-text {
    background-color: #337ab7;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 0;
    font-size: 35px;
    width: 100%;
    
}

    .main-container {
      display: flex;
      padding: 20px;
    }

    .left-content {
      flex: 3;
      padding-right: 20px;
    }

    .sidebar {
      flex: 1;
      background: #f4f9ff;
      padding: 20px;
      border-left: 1px solid #ccc;
    }

    .project-card {
      background: white;
      margin-bottom: 20px;
      padding: 15px;
      border-left: 6px solid #2e3a99;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .project-card .code {
      background: #2e3a99;
      color: white;
      padding: 5px 10px;
      border-radius: 3px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .project-card h2 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #002060;
    }

    .btn-row button {
      margin-right: 10px;
      padding: 8px 12px;
      border: 1px solid #002060;
      background: none;
      cursor: pointer;
      border-radius: 5px;
    }
   

    .view-btn {
      background: #00c9db;
      color: #000;
      border: none;
    }

    .abstract-btn {
      background: #f0f0f0;
      color: #000;
    }

    .project-btn {
      width: 100%;
      background: #222;
      color: white;
      padding: 12px;
      margin-bottom: 10px;
      border: none;
      font-size: 16px;
      cursor: pointer;
    }

    .latest-titles h3 {
      color: #001a60;
      border-bottom: 2px solid #001a60;
      padding-bottom: 5px;
    }

    .latest-titles ul {
      padding-left: 0;
      list-style: none;
    }

    .latest-titles li {
      margin-bottom: 10px;
      font-size: 14px;
    }

    /* Popup Styling */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-content {
      background: white;
      max-width: 700px;
      width: 90%;
      max-height: 80%;
      overflow-y: auto;
      padding: 20px;
      border-radius: 8px;
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 2px;
      right: 5px;
      font-size: 24px;
      cursor: pointer;
      /* background-color: red; */
    }

    video {
      width: 100%;
      border-radius: 5px;
    }
 
    .design:hover
     {
background-color: firebrick;
    }