  body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
    }

    /* Top Logo Bar */
    .logo-bar {
      background: #fff;
      padding: 0px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ddd;
      flex-wrap: wrap;
    }

    .logo-bar img {
      height: 80px;
      margin: 5px 0;
    }

    .logo-bar h4 {
      text-align: center;
      flex: 1;
      margin: 0px 0;
      color: #F26522;

    }

    /* How to Apply */
    .howto {
      background: #f26522;
      color: #fff;
      padding: 12px 20px;
      font-weight: bold;
      text-align: center;
      font-size: 16px;
    }

    /* Scheme Bar */
    .scheme-container {
      background: #18335a;
      padding: 12px 10px;
    }

    .scheme-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .scheme-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      padding: 12px 15px;
      border-radius: 8px;
      transition: all 0.3s ease;
      background: #2d4a7c;
      min-width: 220px;
      justify-content: center;
      text-align: center;
    }

    .scheme-item:hover {
      background: #0d6efd;
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .scheme-item img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #fff;
      padding: 5px;
    }






    .main-container {
      display: flex;
      flex-direction: column;
      margin: 15px;
      gap: 20px;
    }

    /* Panels for larger screens */
    @media (min-width: 992px) {
      .main-container {
        flex-direction: row;
        margin: 25px;
        gap: 25px;
      }

      .left-panel,
      .center-panel,
      .right-panel {
        flex: 1;
      }

      .center-panel {
        flex: 1.2;
      }

      .right-panel {
        flex: 0.9;
      }
    }

    /* Left Panel (Courses) */
    .left-panel {
      order: 1;
    }

    @media (min-width: 992px) {
      .left-panel {
        order: 1;
      }
    }

    .course-box {
      background: #ffffff;
      border: none;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 15px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .course-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .course-box h5 {
      margin: 0 0 10px;
      color: #1E2A5E;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
    }

    .course-box p {
      margin: 0 0 12px;
      font-size: 14px;
      color: #666;
    }

    .course-box .btn {
      font-size: 13px;
      padding: 6px 12px;
      border-radius: 6px;
    }

    .course-box .btn+.btn {
      margin-left: 8px;
    }

    .course-icon {
      width: 24px;
      height: 24px;
    }

    /* Center Panel (Login Form) */
    .center-panel {
      order: 3;
      background: #ffffff;
      border: none;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }

    @media (min-width: 992px) {
      .center-panel {
        order: 2;
        padding: 30px;
      }
    }





    /* Right Panel (Quick Links + Instructions) */
    .right-panel {
      order: 2;
    }

    @media (min-width: 992px) {
      .right-panel {
        order: 3;
      }
    }

    .quick-link {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      padding: 12px 14px;
      margin-bottom: 10px;
      border-radius: 8px;
      font-weight: 500;
      color: #333;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
      font-size: 14px;
    }

    .quick-link:hover {
      background: #0d6efd;
      color: #fff;
      transform: translateX(4px);
    }

    .quick-link i {
      font-size: 16px;
      min-width: 24px;
    }

    /* Important Instructions */
    .instructions {
      margin-top: 20px;
      padding: 15px;
      background: #fff3cd;
      border: 1px solid #ffeeba;
      border-radius: 8px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }

    .instructions h5 {
      color: #856404;
      font-weight: bold;
      margin-bottom: 12px;
      font-size: 16px;
    }

    .instructions ul {
      margin: 0;
      padding-left: 20px;
      color: #555;
      font-size: 14px;
    }

    /* Mobile menu toggle */
    .mobile-menu-toggle {
      display: none;
      background: var(--primary-blue);
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      text-align: center;
      font-weight: bold;
    }


    /* Accordion styles */
    .accordion-button {
      padding: 12px 15px;
      font-size: 14px;
    }

    .accordion-body {
      font-size: 14px;
      padding: 15px;
    }






    @media (max-width: 768px) {
      .logo-bar {
        flex-direction: column;
        text-align: center;
      }

      .scheme-item {
        min-width: 100%;
      }

      .main-container {
        margin: 15px;
      }
    }


    .logo-bar h4 {
      text-align: center;
      flex: 1;
      margin: 5px 0;
      font-size: 2.6rem;
      font-weight: 600;
    }

    .center-panel .btn {
      background-color: #F26522;
    }

    .center-panel h4 {
      text-align: center;
      font-weight: 600;
    }







    /* Right Panel Redesign */
    .right-panel {
      order: 2;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 16px;
      padding: 0px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    @media (min-width: 992px) {
      .right-panel {
        order: 3;
      }
    }

    /* Quick Access Tabs */
    .quick-access-tabs {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
      margin-bottom: 25px;
    }

    .tab-header {
      display: flex;
      background: linear-gradient(135deg, #18335a 0%, #2d4a7c 100%);
      padding: 15px 20px;
      align-items: center;
      gap: 12px;
    }

    .tab-header i {
      font-size: 24px;
      color: #F26522;
      background: rgba(255, 255, 255, 0.15);
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .tab-header h4 {
      margin: 0;
      color: white;
      font-weight: 600;
      font-size: 1.4rem;
    }

    .tab-content {
      padding: 0;
    }

    .tab-link {
      display: flex;
      align-items: center;
      padding: 18px 20px;
      text-decoration: none;
      color: #333;
      border-bottom: 1px solid #f1f1f1;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .tab-link:last-child {
      border-bottom: none;
    }

    .tab-link:hover {
      background: #f8f9fa;
      transform: translateX(5px);
    }

    .tab-link:hover .link-icon {
      background: #F26522;
      color: white;
    }

    .link-icon {
      width: 42px;
      height: 42px;
      background: #f1f5f9;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: #18335a;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .link-text {
      flex-grow: 1;
    }

    .link-text h5 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      color: #18335a;
    }

    .link-text p {
      margin: 4px 0 0;
      font-size: 13px;
      color: #6c757d;
    }

    .link-arrow {
      color: #18335a;
      opacity: 0.6;
      transition: all 0.3s ease;
    }

    .tab-link:hover .link-arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    /* Instructions Card */
    .instructions-card {
      background: white;
      border-radius: 14px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
      border-left: 5px solid #F26522;
    }

    .instructions-header {
      display: flex;
      align-items: center;
      margin-bottom: 18px;
      gap: 12px;
    }

    .instructions-header i {
      font-size: 24px;
      color: #F26522;
      background: rgba(242, 101, 34, 0.1);
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .instructions-header h5 {
      margin: 0;
      color: #18335a;
      font-weight: 600;
      font-size: 1.3rem;
    }

    .instructions-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .instructions-list li {
      padding: 12px 0;
      border-bottom: 1px dashed #e9ecef;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #555;
      font-size: 14px;
      line-height: 1.5;
    }

    .instructions-list li:last-child {
      border-bottom: none;
    }

    .instructions-list li i {
      color: #F26522;
      margin-top: 4px;
      flex-shrink: 0;
    }

    /* Documents Accordion */
    .documents-accordion {
      background: white;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    }

    .accordion-header {
      background: linear-gradient(135deg, #18335a 0%, #2d4a7c 100%);
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .accordion-header i {
      font-size: 22px;
      color: #F26522;
      background: rgba(255, 255, 255, 0.15);
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .accordion-header h3 {
      margin: 0;
      color: white;
      font-weight: 600;
      font-size: 1.3rem;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #e9ecef;
    }

    .accordion-item:last-child {
      border-bottom: none;
    }

    .accordion-button {
      padding: 0px 5px;
      font-weight: 600;
      color: #18335a;
      background: #f8f9fa;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: #18335a;
      color: white;
    }

    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2318335a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: rotate(-90deg);
    }

    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: rotate(0deg);
    }

    .accordion-body {
      padding: 16px 20px;
      background: #f8f9fa;
      font-size: 14px;
    }

    .accordion-body ul {
      margin: 0;
      padding-left: 20px;
      color: #555;
    }

    .accordion-body li {
      margin-bottom: 8px;
      line-height: 1.5;
    }