/* Home page  */
 /* ===== COMPACT POPUP MODAL DESIGN ===== */
    .premium-modal-content {
      border-radius: 16px;
      overflow: hidden;
      border: none;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      background: #ffffff;
    }

    .premium-modal-header {
      background: linear-gradient(135deg, #1e4663 0%, #0a5c4b 100%);
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 3px solid #e67e22;
      min-height: 50px;
    }

    .premium-modal-header h4 {
      color: #ffffff;
      font-weight: 700;
      font-size: 1.25rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .premium-modal-header h4 i {
      color: #e67e22;
      font-size: 20px;
    }

    .premium-modal-header .btn-close-white {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 0;
    }

    .premium-modal-header .btn-close-white:hover {
      background: #e67e22;
      transform: rotate(90deg);
    }

    .premium-modal-body {
      padding: 16px 20px 12px;
      background: #f8fafc;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    @media (max-width: 576px) {
      .info-grid {
        grid-template-columns: 1fr;
        gap: 6px;
      }
    }

    .info-card-premium {
      background: #ffffff;
      border-radius: 10px;
      padding: 18px 12px;
      border-left: 3px solid #e67e22;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.2s ease;
    }

    .info-card-premium:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .info-card-premium label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: #e67e22;
      margin-bottom: 1px;
    }

    .info-card-premium label i {
      margin-right: 4px;
      font-size: 0.6rem;
    }

    .info-card-premium p {
      margin: 0;
      font-size: 0.78rem;
      font-weight: 600;
      color: #1e4663;
      word-break: break-word;
      line-height: 1.3;
    }

    .info-card-premium.full-width {
      grid-column: 1 / -1;
    }

    .modal.fade .modal-dialog {
      transform: scale(0.95) translateY(-20px);
      transition: all 0.3s ease;
    }

    .modal.show .modal-dialog {
      transform: scale(1) translateY(0);
    }

    .premium-modal .modal-dialog {
      max-width: 600px;
    }

    @media (max-width: 576px) {
      .premium-modal .modal-dialog {
        max-width: calc(100% - 1.5rem);
        margin: 0.75rem auto;
      }

      .premium-modal-body {
        padding: 12px 14px 10px;
      }

      .info-card-premium {
        padding: 6px 10px;
      }

      .info-card-premium p {
        font-size: 0.72rem;
      }
    }

    /* ===== TABLE STYLES ===== */
    .navbar-brand-logo {
      display: inline-block;
      padding: 5px 0;
    }

    .navbar-brand-logo img {
      max-height: 60px;
      width: auto;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .navbar-brand-logo img {
        max-height: 50px;
      }
    }

    .navbar-nav .nav-link {
      transition: all 0.3s ease;
      position: relative;
    }

    .navbar-nav .nav-link.active {
      color: #a4c639 !important;
      font-weight: 600;
    }

    .navbar-nav .nav-link.active:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #a4c639, #8bc34a);
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        width: 0;
        opacity: 0;
      }

      to {
        width: 100%;
        opacity: 1;
      }
    }

    .updates-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 80px 0;
    }

    .updates-premium-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      width: 100%;
    }

    .updates-premium-header {
      background: #1e4663;
      padding: 20px 30px;
      color: white;
    }

    .updates-premium-header h3 {
      margin: 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.2rem;
    }

    .updates-premium-header h3 i {
      font-size: 24px;
    }

    .table-wrapper-premium {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .notification-table-custom {
      width: 100% !important;
      min-width: 780px;
      margin-bottom: 0;
      border-collapse: separate;
      border-spacing: 0;
    }

    .notification-table-custom thead th {
      background: #f8f9fa;
      color: #1e4663;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 16px 18px;
      border-bottom: 2px solid #e67e22;
      white-space: nowrap;
    }

    .notification-table-custom tbody td {
      padding: 14px 18px;
      vertical-align: middle;
      font-size: 0.95rem;
    }

    .notification-table-custom tbody td strong {
      color: #1e4663;
    }

    .notification-table-custom tbody td .btn-outline-primary {
      border-color: #1e4663;
      color: #1e4663;
      font-size: 0.75rem;
      padding: 4px 12px;
    }

    .notification-table-custom tbody td .btn-outline-primary:hover {
      background: #1e4663;
      color: #fff;
      border-color: #1e4663;
    }

    @media (max-width: 768px) {
      .notification-table-custom tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-bottom: 1px solid #edf2f7;
      }

      .notification-table-custom tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1e4663;
        min-width: 100px;
        font-size: 0.8rem;
      }

      .notification-table-custom tbody td:last-child {
        border-bottom: none;
      }
    }

    .details-btn {
      background: linear-gradient(135deg, #1e4663, #0e3a52);
      border: none;
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .details-btn:hover {
      background: linear-gradient(135deg, #e67e22, #f39c12);
    }

    .contact-premium {
      background: white;
      padding: 80px 0;
    }

    .contact-info-premium {
      background: linear-gradient(135deg, #1e4663, #0e3a52);
      border-radius: 20px;
      padding: 35px;
      color: white;
      height: 100%;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 20px;
    }

    .contact-info-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .contact-icon-premium {
      width: 55px;
      height: 55px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #f39c12;
    }

    .contact-text-premium h5 {
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 5px;
      opacity: 0.8;
    }

    .contact-text-premium p {
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      color: white;
    }

    .form-premium {
      background: #fefefe;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      border: 1px solid #eef2f6;
      height: 100%;
    }

    .form-premium h4 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 25px;
      border-left: 4px solid #e67e22;
      padding-left: 15px;
      font-size: 1.1rem;
    }

    .input-premium {
      border-radius: 12px;
      padding: 12px 18px;
      border: 1px solid #e0e6ed;
      transition: all 0.2s;
      width: 100%;
    }

    .input-premium:focus {
      border-color: #e67e22;
      box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
      outline: none;
    }

    .btn-premium-submit {
      background: linear-gradient(135deg, #e67e22, #f39c12);
      border: none;
      border-radius: 40px;
      padding: 12px 30px;
      font-weight: 700;
      width: 100%;
      color: white;
      transition: all 0.3s;
    }

    .btn-premium-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    .right-icons li:last-child {
      width: auto !important;
      padding: 0 15px;
      white-space: nowrap;
    }

    .right-icons li:last-child a {
      display: inline-block;
      line-height: 46px;
    }

    .right-icons li:nth-last-child(-n+2) {
      width: auto !important;
      padding: 0 20px;
      flex: none;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .contact-info-premium {
        margin-bottom: 30px;
      }

      .notification-table-custom thead {
        display: none;
      }

      .notification-table-custom tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e6ed;
        border-radius: 16px;
        padding: 12px;
        background: white;
      }

      .notification-table-custom tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        border-bottom: 1px solid #edf2f7;
      }

      .notification-table-custom tbody td:last-child {
        border-bottom: none;
      }

      .notification-table-custom tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1e4663;
        min-width: 110px;
      }

      .updates-premium-header h3 {
        font-size: 1rem;
      }

      .form-premium {
        padding: 25px;
      }

      html {
        scroll-padding-top: 60px;
      }
    }

    .desktop-college-table {
      display: table;
    }

    .mobile-college-list {
      display: none;
    }

    @media (max-width: 767px) {
      .desktop-college-table {
        display: none !important;
      }

      .mobile-college-list {
        display: block;
      }

      .mobile-college-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 15px;
      }

      .mobile-college-name {
        font-size: 15px;
        font-weight: 600;
        color: #1e4663;
        margin-bottom: 10px;
      }
    }

    .sub-header .left-info li,
    .sub-header .right-icons li {
      display: inline-block;
      margin-right: 15px;
    }

    @media (max-width: 768px) {
      .sub-header .container .row {
        flex-direction: column;
        text-align: center;
      }

      .sub-header .col-md-8,
      .sub-header .col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
      }

      .request-form .col-md-8,
      .request-form .col-md-4 {
        text-align: center;
        margin-bottom: 15px;
      }

      .more-info .right-content {
        padding: 30px 20px;
      }

      .more-info .left-image img {
        height: 300px !important;
      }
    }

    .modal {
      z-index: 1000000 !important;
    }

    .modal-backdrop {
      z-index: 999999 !important;
    }

    body.modal-open {
      overflow: hidden !important;
      padding-right: 0 !important;
    }

    .popup-slider-modal .modal-dialog {
      max-width: 550px;
      margin: 1.75rem auto;
    }

    @media (max-width: 576px) {
      .popup-slider-modal .modal-dialog {
        max-width: calc(100% - 2rem);
        margin: 1rem;
      }
    }

    .popup-slider-modal .modal-content {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .popup-slider-modal .modal-header {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 20;
      border: none;
      padding: 0;
      width: auto;
      background: transparent;
    }

    .popup-slider-modal .btn-close {
      width: 20px;
      height: 20px;
      background-color: rgba(0, 0, 0, 0.7) !important;
      border-radius: 50%;
      color: white !important;
      opacity: 1;
      margin: 0;
    }

    .popup-slider-modal .btn-close:hover {
      opacity: 1;
      background-color: #e67e22;
      filter: none;
    }

    .popup-slider-modal .modal-body {
      padding: 0;
    }

    .slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .popup-slider {
      position: relative;
      width: 100%;
    }

    .popup-slide {
      display: none;
      width: 100%;
      text-align: center;
      animation: fadeEffect 0.5s ease;
    }

    .popup-slide.active {
      display: block;
    }

    @keyframes fadeEffect {
      from {
        opacity: 0;
        transform: scale(0.98);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .popup-slide img {
      width: 100%;
      height: 580px;
      object-fit: cover;
    }

    @media (max-width: 576px) {
      .popup-slide img {
        height: 280px;
      }
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 12px;
      z-index: 10;
    }

    .slider-nav button {
      background: rgba(0, 0, 0, 0.6);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 16px;
      font-weight: bold;
      color: white;
    }

    .slider-nav button:hover {
      background: #e67e22;
      transform: scale(1.05);
    }

    .video-premium-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 60px 0;
    }

    .video-premium-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .video-premium-header {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      padding: 20px 30px;
      text-align: center;
    }

    .video-premium-header h3 {
      color: white;
      margin: 0;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 1.3rem;
    }

    .video-premium-header h3 i {
      font-size: 28px;
      color: #e67e22;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      .video-premium-header h3 {
        font-size: 1.1rem;
      }

      .video-premium-header h3 i {
        font-size: 22px;
      }
    }

    .more-info .right-content {
      padding: 40px 30px;
    }

    .more-info .right-content h2 {
      font-size: 1.8rem;
    }

    /* ===== Governing Body cards ===== */
    .governing-body {
      background: #fff;
      padding: 70px 0;
    }

    .gb-card {
      background: #f8fafc;
      border-radius: 16px;
      padding: 25px 20px;
      text-align: center;
      border-top: 4px solid #e67e22;
      height: 100%;
      transition: all 0.3s ease;
    }

    .gb-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .gb-card .gb-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin: 0 auto 15px;
    }

    .gb-card h5 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .gb-card span {
      color: #e67e22;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ===== Services offered by the council ===== */
    .services-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 70px 0;
    }

    .service-card-premium {
      background: #fff;
      border-radius: 18px;
      padding: 30px 25px;
      height: 100%;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .service-card-premium:hover {
      transform: translateY(-5px);
    }

    .service-card-premium .service-icon {
      font-size: 34px;
      color: #e67e22;
      margin-bottom: 15px;
    }

    .service-card-premium h5 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .service-card-premium p {
      color: #556070;
      font-size: 0.92rem;
      margin-bottom: 0;
    }

    /* ===== Stats counter band ===== */
    .stats-band {
      background: linear-gradient(135deg, #1e4663 0%, #0a5c4b 100%);
      padding: 55px 0;
      position: relative;
      overflow: hidden;
    }

    .stats-band::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(230, 126, 34, 0.12);
    }

    .stat-item {
      text-align: center;
      color: #fff;
      position: relative;
      z-index: 2;
    }

    .stat-item .stat-number {
      font-size: 2.6rem;
      font-weight: 800;
      color: #f39c12;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .stat-item .stat-label {
      margin-top: 8px;
      font-size: 0.9rem;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .stat-item {
        margin-bottom: 25px;
      }

      .stat-item .stat-number {
        font-size: 2rem;
      }
    }

    /* ===== Registration process timeline ===== */
    .process-premium {
      background: #fff;
      padding: 75px 0;
    }

    .process-track {
      position: relative;
      max-width: 950px;
      margin: 0 auto;
    }

    .process-track::before {
      content: '';
      position: absolute;
      top: 34px;
      left: 0;
      right: 0;
      height: 3px;
      background: repeating-linear-gradient(90deg, #e67e22 0, #e67e22 8px, transparent 8px, transparent 16px);
    }

    @media (max-width: 768px) {
      .process-track::before {
        display: none;
      }
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .process-step .step-circle {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid #e67e22;
      color: #1e4663;
      font-weight: 800;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .process-step h6 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .process-step p {
      color: #6b7684;
      font-size: 0.85rem;
      margin: 0;
      padding: 0 8px;
    }

    @media (max-width: 768px) {
      .process-step {
        margin-bottom: 30px;
      }
    }

    /* ===== FAQ accordion ===== */
    .faq-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 75px 0;
    }

    .faq-premium .accordion-item {
      border: none;
      border-radius: 14px !important;
      overflow: hidden;
      margin-bottom: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    .faq-premium .accordion-button {
      font-weight: 700;
      color: #1e4663;
      background: #fff;
      padding: 18px 22px;
    }

    .faq-premium .accordion-button:not(.collapsed) {
      background: #1e4663;
      color: #fff;
    }

    .faq-premium .accordion-button:focus {
      box-shadow: none;
    }

    .faq-premium .accordion-button::after {
      filter: none;
    }

    .faq-premium .accordion-body {
      background: #fff;
      color: #556070;
      font-size: 0.92rem;
      padding: 18px 22px;
    }

    /* ===== Important links strip ===== */
    .links-premium {
      background: #fff;
      padding: 55px 0 65px;
      border-top: 1px solid #eef2f6;
    }

    .link-chip {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f8fafc;
      border: 1px solid #e9edf2;
      border-radius: 12px;
      padding: 14px 16px;
      text-decoration: none;
      color: #1e4663;
      font-weight: 600;
      font-size: 0.88rem;
      height: 100%;
      transition: all 0.25s ease;
    }

    .link-chip i {
      color: #e67e22;
      font-size: 1.1rem;
    }

    .link-chip:hover {
      background: #1e4663;
      color: #fff;
      transform: translateY(-2px);
    }

    .link-chip:hover i {
      color: #f39c12;
    }

    /* ===== Gallery ===== */
    .gallery-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 75px 0;
    }

    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 220px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item .gallery-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, rgba(30, 70, 99, 0.9), transparent);
      color: #fff;
      padding: 14px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* ===== Dignitaries / Chief Minister Section ===== */
    .dignitaries-premium {
      background: #ffffff;
      padding: 70px 0;
    }

    .dignitary-card {
      background: #f8fafc;
      border-radius: 18px;
      padding: 25px 20px 20px;
      text-align: center;
      border-bottom: 4px solid #e67e22;
      height: 100%;
      transition: all 0.3s ease;
    }

    .dignitary-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .dignitary-card .dignitary-img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #1e4663;
      margin: 0 auto 15px;
      display: block;
    }

    .dignitary-card h5 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .dignitary-card .designation {
      color: #e67e22;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .dignitary-card .designation i {
      margin-right: 5px;
    }

    @media (max-width: 768px) {
      .dignitary-card .dignitary-img {
        width: 110px;
        height: 110px;
      }
    }

    /* ===== Rich multi-column footer ===== */
    .footer-premium {
      background: #12293b;
      color: #cfd8e2;
      padding: 60px 0 0;
    }

    .footer-premium h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .footer-premium p,
    .footer-premium li {
      font-size: 0.88rem;
      line-height: 1.9;
    }

    .footer-premium ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-premium ul li a {
      color: #cfd8e2;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-premium ul li a:hover {
      color: #f39c12;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      margin-right: 8px;
      transition: all 0.25s ease;
    }

    .footer-social a:hover {
      background: #e67e22;
      transform: translateY(-3px);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.82rem;
      text-align: center;
      color: #9fb0c0;
    }

    /* ===== SINGLE SMART SCROLL BUTTON ===== */
    .scroll-smart-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #e67e22, #f39c12);
      color: white;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
      font-size: 22px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.9;
    }

    .scroll-smart-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
      opacity: 1;
    }

    .scroll-smart-btn--down {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      box-shadow: 0 4px 15px rgba(30, 70, 99, 0.4);
    }

    .scroll-smart-btn--down:hover {
      box-shadow: 0 8px 25px rgba(30, 70, 99, 0.5);
    }

    @media (max-width: 576px) {
      .scroll-smart-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
      }
    }

    /* Dropdown */
    .navbar .dropdown-menu {
      border: 0;
      border-radius: 8px;
      padding: 10px 0;
      margin-top: 0;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    }

    .navbar .dropdown-item {
      padding: 10px 20px;
      font-size: 15px;
      color: #1e4663;
      transition: .3s;
    }

    .navbar .dropdown-item:hover {
      background: #1e4663;
      color: #fff;
    }

    .navbar .dropdown:hover>.dropdown-menu {
      display: block;
    }

    .navbar .dropdown-toggle::after {
      margin-left: 6px;
    }

    .badge-notify {
      background: #e67e22;
      color: #fff;
      border-radius: 30px;
      padding: 3px 10px;
      font-size: 0.7rem;
      margin-left: 6px;
    }

    .navbar .dropdown-submenu {
      position: relative;
    }

    .navbar .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
      border-radius: 8px;
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu {
      display: block;
    }

    .navbar .dropdown-submenu .dropdown-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar .dropdown-submenu .dropdown-item i {
      font-size: 12px;
      color: #aaa;
    }

    @media (max-width: 991.98px) {
      .navbar .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-top: 0;
        border-radius: 0;
        padding-left: 20px;
      }

      .navbar .dropdown-submenu .dropdown-item i {
        display: none;
      }
    }

    /* ===== FIXED HEADER & NAVIGATION ===== */
    .site-header {
      height: inherit;
      width: 100%;
      background-color: #ffffff !important;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-top {
      display: flex;
      justify-content: left;
      align-items: left;
      padding: 10px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .center-logo {
      display: flex;
      flex-direction: column;
      align-items: left;
    }

    .center-logo img {
      height: 100px;
      width: auto;
    }

    /* ===== NAVIGATION BAR - COMPLETE FIX ===== */
    .nav-bar {
      background-color: #4caf50;
      width: 100%;
      position: relative;
      z-index: 1002;
    }

    .nav-container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    /* Desktop menu items */
    .nav-menu {
      display: flex;
      width: auto;
      list-style: none;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 30px;
      margin: 0 auto;
      padding: 0;
      align-items: center;
    }

    .nav-menu>li {
      position: relative;
    }

    .nav-menu>li>a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      padding: 10px 8px;
      font-size: 14px;
      white-space: nowrap;
    }

    .nav-menu>li>a:hover {
      background-color: #388e3c;
      border-radius: 4px;
    }

    .nav-menu>li>a:not(:only-child)::after {
      content: " ▼";
      font-size: 10px;
      margin-left: 5px;
      vertical-align: middle;
    }

    /* Desktop dropdown */
    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      min-width: 220px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1003;
      border-top: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      border-bottom: 1px solid #eee;
    }

    .submenu li:last-child {
      border-bottom: none;
    }

    .submenu li a {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      transition: all 0.2s;
    }

    .submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    .nav-menu>li:hover .submenu {
      display: block;
    }

    /* ===== MOBILE MENU TOGGLE ===== */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: #ffffff;
      font-size: 28px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 4px;
      transition: background 0.3s;
      z-index: 1003;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    /* ===== RESPONSIVE MOBILE STYLES ===== */
    @media (max-width: 991px) {
      .header-top {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .center-logo img {
        height: 70px;
      }

      .menu-toggle {
        display: block !important;
      }

      .nav-container {
        padding: 10px 15px;
        flex-wrap: wrap;
      }

      .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #4caf50;
        padding: 10px 0;
        margin: 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        max-height: 70vh;
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
        list-style: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
      }

      .nav-menu.open {
        display: flex !important;
      }

      .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
      }

      .nav-menu>li:last-child {
        border-bottom: none;
      }

      .nav-menu>li>a {
        padding: 12px 20px;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s;
        width: 100%;
      }

      .nav-menu>li>a:hover {
        background: #388e3c;
      }

      .nav-menu>li>a:not(:only-child)::after {
        content: " ▾";
        font-size: 12px;
        margin-left: 10px;
        transition: transform 0.3s;
      }

      .nav-menu>li.active-sub>a:not(:only-child)::after {
        transform: rotate(180deg);
      }

      /* Mobile submenu */
      .submenu {
        position: static !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-top: none !important;
        display: none !important;
        width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .nav-menu>li.active-sub .submenu {
        display: block !important;
      }

      .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .submenu li:last-child {
        border-bottom: none;
      }

      .submenu li a {
        padding: 10px 20px 10px 35px !important;
        color: #fff !important;
        font-size: 14px;
        background: transparent !important;
        display: block;
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .submenu li:last-child a {
        border-bottom: none;
      }

      .submenu li a:hover {
        background: #2e7d32 !important;
        color: #fff !important;
        padding-left: 45px !important;
      }

      .submenu li a::before {
        content: "▸ ";
        color: #a4c639;
        font-size: 12px;
      }
    }

    /* ===== EXTRA SMALL DEVICES ===== */
    @media (max-width: 480px) {
      .nav-container {
        padding: 8px 12px;
      }

      .menu-toggle {
        font-size: 22px;
        padding: 4px 10px;
      }

      .nav-menu>li>a {
        padding: 10px 16px;
        font-size: 14px;
      }

      .submenu li a {
        padding: 8px 16px 8px 30px !important;
        font-size: 13px;
      }
    }

    /* ===== FIX FOR SECTION SCROLLING ===== */
    #home,
    #about,
    #dignitaries,
    #governing-body,
    #services,
    #process,
    #gallery,
    #rti,
    #actrules,
    #faq,
    #contactus {
      scroll-margin-top: 120px;
    }

    /* Prevent overflow issues */
    body {
      overflow-x: hidden;
    }

    /* Ensure proper stacking context */
    .main-banner,
    .more-info,
    .stats-band,
    .dignitaries-premium,
    .governing-body,
    .services-premium,
    .process-premium,
    .gallery-premium,
    .faq-premium,
    .links-premium,
    .footer-premium {
      position: relative;
      z-index: 1;
    }

    /* Fix header gap */
    #about {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .more-info {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .more-info .right-content {
      padding: 20px 30px !important;
    }

    /* Sub-submenu styling */
    .sub-submenu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: #ffffff;
      min-width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1004;
      border-left: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      position: relative;
    }

    .submenu li:hover .sub-submenu {
      display: block;
    }

    .sub-submenu li {
      border-bottom: 1px solid #eee;
    }

    .sub-submenu li:last-child {
      border-bottom: none;
    }

    .sub-submenu li a {
      padding: 10px 15px;
      color: #333;
      font-size: 13px;
    }

    .sub-submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    @media (max-width: 991px) {
      .sub-submenu {
        position: static !important;
        left: 0 !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-left: none !important;
        display: none !important;
        width: 100%;
        padding-left: 20px;
      }

      .submenu li:hover .sub-submenu {
        display: none !important;
      }

      .nav-menu>li.active-sub .sub-submenu {
        display: block !important;
      }

      .sub-submenu li a {
        padding: 8px 20px 8px 45px !important;
        color: #fff !important;
        font-size: 13px;
      }

      .sub-submenu li a:hover {
        background: #2e7d32 !important;
        padding-left: 55px !important;
      }
    }

    .submenu li.has-submenu>a::after {
      content: " ▸";
      font-size: 20px;
      margin-left: 5px;
      vertical-align: middle;
      float: right;
    }

    /* For mobile, change to down arrow */
    @media (max-width: 991px) {
      .submenu li.has-submenu>a::after {
        content: " ▾";
        font-size: 18px;
        float: right;
      }
    }


    /* Institutes Page  */

        /* ===== COMPACT POPUP MODAL DESIGN ===== */
    .premium-modal-content {
      border-radius: 16px;
      overflow: hidden;
      border: none;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      background: #ffffff;
    }

    .premium-modal-header {
      background: linear-gradient(135deg, #1e4663 0%, #0a5c4b 100%);
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 3px solid #e67e22;
      min-height: 50px;
    }

    .premium-modal-header h4 {
      color: #ffffff;
      font-weight: 700;
      font-size: 1.25rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .premium-modal-header h4 i {
      color: #e67e22;
      font-size: 20px;
    }

    .premium-modal-header .btn-close-white {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 0;
    }

    .premium-modal-header .btn-close-white:hover {
      background: #e67e22;
      transform: rotate(90deg);
    }

    .premium-modal-body {
      padding: 16px 20px 12px;
      background: #f8fafc;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    @media (max-width: 576px) {
      .info-grid {
        grid-template-columns: 1fr;
        gap: 6px;
      }
    }

    .info-card-premium {
      background: #ffffff;
      border-radius: 10px;
      padding: 18px 12px;
      border-left: 3px solid #e67e22;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.2s ease;
    }

    .info-card-premium:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .info-card-premium label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: #e67e22;
      margin-bottom: 1px;
    }

    .info-card-premium label i {
      margin-right: 4px;
      font-size: 0.6rem;
    }

    .info-card-premium p {
      margin: 0;
      font-size: 0.78rem;
      font-weight: 600;
      color: #1e4663;
      word-break: break-word;
      line-height: 1.3;
    }

    .info-card-premium.full-width {
      grid-column: 1 / -1;
    }

    /* ===== TABLE STYLES ===== */
    .navbar-brand-logo {
      display: inline-block;
      padding: 5px 0;
    }

    .navbar-brand-logo img {
      max-height: 60px;
      width: auto;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .navbar-brand-logo img {
        max-height: 50px;
      }
    }

    .updates-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 80px 0;
      min-height: 80vh;
    }

    .updates-premium-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      width: 100%;
    }

    .updates-premium-header {
      background: #1e4663;
      padding: 20px 30px;
      color: white;
    }

    .updates-premium-header h3 {
      margin: 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.2rem;
    }

    .updates-premium-header h3 i {
      font-size: 24px;
    }

    .table-wrapper-premium {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .notification-table-custom {
      width: 100% !important;
      min-width: 780px;
      margin-bottom: 0;
      border-collapse: separate;
      border-spacing: 0;
    }

    .notification-table-custom thead th {
      background: #f8f9fa;
      color: #1e4663;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 16px 18px;
      border-bottom: 2px solid #e67e22;
      white-space: nowrap;
    }

    .notification-table-custom tbody td {
      padding: 14px 18px;
      vertical-align: middle;
      font-size: 0.95rem;
    }

    .notification-table-custom tbody td strong {
      color: #1e4663;
    }

    .details-btn {
      background: linear-gradient(135deg, #1e4663, #0e3a52);
      border: none;
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .details-btn:hover {
      background: linear-gradient(135deg, #e67e22, #f39c12);
    }

    @media (max-width: 768px) {
      .notification-table-custom tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-bottom: 1px solid #edf2f7;
      }

      .notification-table-custom tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1e4663;
        min-width: 100px;
        font-size: 0.8rem;
      }

      .notification-table-custom tbody td:last-child {
        border-bottom: none;
      }
    }

    .desktop-college-table {
      display: table;
    }

    .mobile-college-list {
      display: none;
    }

    @media (max-width: 767px) {
      .desktop-college-table {
        display: none !important;
      }

      .mobile-college-list {
        display: block;
      }

      .mobile-college-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 15px;
      }

      .mobile-college-name {
        font-size: 15px;
        font-weight: 600;
        color: #1e4663;
        margin-bottom: 10px;
      }
    }

    /* ===== HEADER STYLES - MATCHING INDEX.PHP ===== */
    .site-header {
      height: inherit;
      width: 100%;
      background-color: #ffffff !important;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-top {
      display: flex;
      justify-content: left;
      align-items: left;
      padding: 10px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .center-logo {
      display: flex;
      flex-direction: column;
      align-items: left;
    }

    .center-logo img {
      height: 100px;
      width: auto;
    }

    .nav-bar {
      background-color: #4caf50;
      width: 100%;
      position: relative;
      z-index: 1002;
    }

    .nav-container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .nav-menu {
      display: flex;
      width: auto;
      list-style: none;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 30px;
      margin: 0 auto;
      padding: 0;
      align-items: center;
    }

    .nav-menu>li {
      position: relative;
    }

    .nav-menu>li>a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      padding: 10px 8px;
      font-size: 14px;
      white-space: nowrap;
    }

    .nav-menu>li>a:hover {
      background-color: #388e3c;
      border-radius: 4px;
    }

    .nav-menu>li>a:not(:only-child)::after {
      content: " ▼";
      font-size: 10px;
      margin-left: 5px;
      vertical-align: middle;
    }

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      min-width: 220px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1003;
      border-top: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      border-bottom: 1px solid #eee;
    }

    .submenu li:last-child {
      border-bottom: none;
    }

    .submenu li a {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      transition: all 0.2s;
    }

    .submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    .nav-menu>li:hover .submenu {
      display: block;
    }

    /* ===== MOBILE MENU TOGGLE ===== */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: #ffffff;
      font-size: 28px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 4px;
      transition: background 0.3s;
      z-index: 1003;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    /* ===== RESPONSIVE MOBILE STYLES ===== */
    @media (max-width: 991px) {
      .header-top {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .center-logo img {
        height: 70px;
      }

      .menu-toggle {
        display: block !important;
      }

      .nav-container {
        padding: 10px 15px;
        flex-wrap: wrap;
      }

      .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #4caf50;
        padding: 10px 0;
        margin: 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        max-height: 70vh;
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
        list-style: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
      }

      .nav-menu.open {
        display: flex !important;
      }

      .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
      }

      .nav-menu>li:last-child {
        border-bottom: none;
      }

      .nav-menu>li>a {
        padding: 12px 20px;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s;
        width: 100%;
      }

      .nav-menu>li>a:hover {
        background: #388e3c;
      }

      .nav-menu>li>a:not(:only-child)::after {
        content: " ▾";
        font-size: 12px;
        margin-left: 10px;
        transition: transform 0.3s;
      }

      .nav-menu>li.active-sub>a:not(:only-child)::after {
        transform: rotate(180deg);
      }

      .submenu {
        position: static !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-top: none !important;
        display: none !important;
        width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .nav-menu>li.active-sub .submenu {
        display: block !important;
      }

      .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .submenu li:last-child {
        border-bottom: none;
      }

      .submenu li a {
        padding: 10px 20px 10px 35px !important;
        color: #fff !important;
        font-size: 14px;
        background: transparent !important;
        display: block;
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .submenu li:last-child a {
        border-bottom: none;
      }

      .submenu li a:hover {
        background: #2e7d32 !important;
        color: #fff !important;
        padding-left: 45px !important;
      }

      .submenu li a::before {
        content: "▸ ";
        color: #a4c639;
        font-size: 12px;
      }
    }

    /* ===== EXTRA SMALL DEVICES ===== */
    @media (max-width: 480px) {
      .nav-container {
        padding: 8px 12px;
      }

      .menu-toggle {
        font-size: 22px;
        padding: 4px 10px;
      }

      .nav-menu>li>a {
        padding: 10px 16px;
        font-size: 14px;
      }

      .submenu li a {
        padding: 8px 16px 8px 30px !important;
        font-size: 13px;
      }

      .center-logo img {
        height: 60px !important;
      }
    }

    .right-icons li:last-child {
      width: auto !important;
      padding: 0 15px;
      white-space: nowrap;
    }

    .right-icons li:last-child a {
      display: inline-block;
      line-height: 46px;
    }

    .right-icons li:nth-last-child(-n+2) {
      width: auto !important;
      padding: 0 20px;
      flex: none;
      white-space: nowrap;
    }

    .sub-header .left-info li,
    .sub-header .right-icons li {
      display: inline-block;
      margin-right: 15px;
    }

    @media (max-width: 768px) {
      .sub-header .container .row {
        flex-direction: column;
        text-align: center;
      }

      .sub-header .col-md-8,
      .sub-header .col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
      }
    }

    /* ===== BACK BUTTON ===== */
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #1e4663;
      text-decoration: none;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 30px;
      background: #fff;
      border: 1px solid #e0e6ed;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    .back-link:hover {
      background: #1e4663;
      color: #fff;
      border-color: #1e4663;
    }

    /* ===== SINGLE SMART SCROLL BUTTON ===== */
    .scroll-smart-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #e67e22, #f39c12);
      color: white;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
      font-size: 22px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.9;
    }

    .scroll-smart-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
      opacity: 1;
    }

    .scroll-smart-btn--down {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      box-shadow: 0 4px 15px rgba(30, 70, 99, 0.4);
    }

    .scroll-smart-btn--down:hover {
      box-shadow: 0 8px 25px rgba(30, 70, 99, 0.5);
    }

    @media (max-width: 576px) {
      .scroll-smart-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
      }
    }

    /* Fix header gap */
    #about {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    /* ===== FOOTER ===== */
    .footer-premium {
      background: #12293b;
      color: #cfd8e2;
      padding: 60px 0 0;
    }

    .footer-premium h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .footer-premium p,
    .footer-premium li {
      font-size: 0.88rem;
      line-height: 1.9;
    }

    .footer-premium ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-premium ul li a {
      color: #cfd8e2;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-premium ul li a:hover {
      color: #f39c12;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      margin-right: 8px;
      transition: all 0.25s ease;
    }

    .footer-social a:hover {
      background: #e67e22;
      transform: translateY(-3px);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.82rem;
      text-align: center;
      color: #9fb0c0;
    }

    /* Sub-submenu styling */
    .sub-submenu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: #ffffff;
      min-width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1004;
      border-left: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      position: relative;
    }

    .submenu li:hover .sub-submenu {
      display: block;
    }

    .sub-submenu li {
      border-bottom: 1px solid #eee;
    }

    .sub-submenu li:last-child {
      border-bottom: none;
    }

    .sub-submenu li a {
      padding: 10px 15px;
      color: #333;
      font-size: 13px;
    }

    .sub-submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    @media (max-width: 991px) {
      .sub-submenu {
        position: static !important;
        left: 0 !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-left: none !important;
        display: none !important;
        width: 100%;
        padding-left: 20px;
      }

      .submenu li:hover .sub-submenu {
        display: none !important;
      }

      .nav-menu>li.active-sub .sub-submenu {
        display: block !important;
      }

      .sub-submenu li a {
        padding: 8px 20px 8px 45px !important;
        color: #fff !important;
        font-size: 13px;
      }

      .sub-submenu li a:hover {
        background: #2e7d32 !important;
        padding-left: 55px !important;
      }
    }

    /* ===== SUB-SUBMENU INDICATOR ===== */
    .submenu li.has-submenu>a:not(:only-child)::after {
      content: " ▸";
      font-size: 20px;
      margin-left: 5px;
      vertical-align: middle;
      float: right;
    }

    @media (max-width: 991px) {
      .submenu li.has-submenu>a:not(:only-child)::after {
        content: " ▾";
        font-size: 18px;
        float: right;
      }
    }


    /* Contact Page  */

        /* ===== COMPACT POPUP MODAL DESIGN ===== */
    .premium-modal-content {
      border-radius: 16px;
      overflow: hidden;
      border: none;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      background: #ffffff;
    }

    .premium-modal-header {
      background: linear-gradient(135deg, #1e4663 0%, #0a5c4b 100%);
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 3px solid #e67e22;
      min-height: 50px;
    }

    .premium-modal-header h4 {
      color: #ffffff;
      font-weight: 700;
      font-size: 1.25rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .premium-modal-header h4 i {
      color: #e67e22;
      font-size: 20px;
    }

    .premium-modal-header .btn-close-white {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 0;
    }

    .premium-modal-header .btn-close-white:hover {
      background: #e67e22;
      transform: rotate(90deg);
    }

    .premium-modal-body {
      padding: 16px 20px 12px;
      background: #f8fafc;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    @media (max-width: 576px) {
      .info-grid {
        grid-template-columns: 1fr;
        gap: 6px;
      }
    }

    .info-card-premium {
      background: #ffffff;
      border-radius: 10px;
      padding: 18px 12px;
      border-left: 3px solid #e67e22;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.2s ease;
    }

    .info-card-premium:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .info-card-premium label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: #e67e22;
      margin-bottom: 1px;
    }

    .info-card-premium label i {
      margin-right: 4px;
      font-size: 0.6rem;
    }

    .info-card-premium p {
      margin: 0;
      font-size: 0.78rem;
      font-weight: 600;
      color: #1e4663;
      word-break: break-word;
      line-height: 1.3;
    }

    .info-card-premium.full-width {
      grid-column: 1 / -1;
    }

    .modal-action-buttons {
      display: flex;
      gap: 8px;
      margin-top: 12px;
      padding-top: 10px;
      border-top: 1px solid #e9edf2;
    }

    .modal-action-btn {
      padding: 6px 16px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.7rem;
      border: none;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .modal-action-btn i {
      font-size: 0.7rem;
    }

    .modal-action-btn-primary {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      color: #ffffff;
    }

    .modal-action-btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(30, 70, 99, 0.3);
      color: #fff;
    }

    .modal-action-btn-outline {
      background: transparent;
      color: #1e4663;
      border: 1.5px solid #1e4663;
    }

    .modal-action-btn-outline:hover {
      background: #1e4663;
      color: #fff;
    }

    .modal.fade .modal-dialog {
      transform: scale(0.95) translateY(-20px);
      transition: all 0.3s ease;
    }

    .modal.show .modal-dialog {
      transform: scale(1) translateY(0);
    }

    .premium-modal .modal-dialog {
      max-width: 600px;
    }

    @media (max-width: 576px) {
      .premium-modal .modal-dialog {
        max-width: calc(100% - 1.5rem);
        margin: 0.75rem auto;
      }

      .premium-modal-body {
        padding: 12px 14px 10px;
      }

      .info-card-premium {
        padding: 6px 10px;
      }

      .info-card-premium p {
        font-size: 0.72rem;
      }

      .modal-action-btn {
        padding: 5px 12px;
        font-size: 0.65rem;
      }
    }

    /* ===== TABLE STYLES ===== */
    .navbar-brand-logo {
      display: inline-block;
      padding: 5px 0;
    }

    .navbar-brand-logo img {
      max-height: 60px;
      width: auto;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .navbar-brand-logo img {
        max-height: 50px;
      }
    }

    .navbar-nav .nav-link {
      transition: all 0.3s ease;
      position: relative;
    }

    .navbar-nav .nav-link.active {
      color: #a4c639 !important;
      font-weight: 600;
    }

    .navbar-nav .nav-link.active:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #a4c639, #8bc34a);
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        width: 0;
        opacity: 0;
      }

      to {
        width: 100%;
        opacity: 1;
      }
    }

    .updates-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 80px 0;
    }

    .updates-premium-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      width: 100%;
    }

    .updates-premium-header {
      background: #1e4663;
      padding: 20px 30px;
      color: white;
    }

    .updates-premium-header h3 {
      margin: 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.2rem;
    }

    .updates-premium-header h3 i {
      font-size: 24px;
    }

    .table-wrapper-premium {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .notification-table-custom {
      width: 100% !important;
      min-width: 780px;
      margin-bottom: 0;
      border-collapse: separate;
      border-spacing: 0;
    }

    .notification-table-custom thead th {
      background: #f8f9fa;
      color: #1e4663;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 16px 18px;
      border-bottom: 2px solid #e67e22;
      white-space: nowrap;
    }

    .notification-table-custom tbody td {
      padding: 14px 18px;
      vertical-align: middle;
      font-size: 0.95rem;
    }

    .notification-table-custom tbody td strong {
      color: #1e4663;
    }

    .notification-table-custom tbody td .btn-outline-primary {
      border-color: #1e4663;
      color: #1e4663;
      font-size: 0.75rem;
      padding: 4px 12px;
    }

    .notification-table-custom tbody td .btn-outline-primary:hover {
      background: #1e4663;
      color: #fff;
      border-color: #1e4663;
    }

    @media (max-width: 768px) {
      .notification-table-custom tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-bottom: 1px solid #edf2f7;
      }

      .notification-table-custom tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1e4663;
        min-width: 100px;
        font-size: 0.8rem;
      }

      .notification-table-custom tbody td:last-child {
        border-bottom: none;
      }
    }

    .details-btn {
      background: linear-gradient(135deg, #1e4663, #0e3a52);
      border: none;
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .details-btn:hover {
      background: linear-gradient(135deg, #e67e22, #f39c12);
    }

    .contact-premium {
      background: white;
      padding: 80px 0;
    }

    .contact-info-premium {
      background: linear-gradient(135deg, #1e4663, #0e3a52);
      border-radius: 20px;
      padding: 35px;
      color: white;
      height: 100%;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 20px;
    }

    .contact-info-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .contact-icon-premium {
      width: 55px;
      height: 55px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #f39c12;
    }

    .contact-text-premium h5 {
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 5px;
      opacity: 0.8;
    }

    .contact-text-premium p {
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      color: white;
    }

    .form-premium {
      background: #fefefe;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      border: 1px solid #eef2f6;
      height: 100%;
    }

    .form-premium h4 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 25px;
      border-left: 4px solid #e67e22;
      padding-left: 15px;
      font-size: 1.1rem;
    }

    .input-premium {
      border-radius: 12px;
      padding: 12px 18px;
      border: 1px solid #e0e6ed;
      transition: all 0.2s;
      width: 100%;
    }

    .input-premium:focus {
      border-color: #e67e22;
      box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
      outline: none;
    }

    .btn-premium-submit {
      background: linear-gradient(135deg, #e67e22, #f39c12);
      border: none;
      border-radius: 40px;
      padding: 12px 30px;
      font-weight: 700;
      width: 100%;
      color: white;
      transition: all 0.3s;
    }

    .btn-premium-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    .right-icons li:last-child {
      width: auto !important;
      padding: 0 15px;
      white-space: nowrap;
    }

    .right-icons li:last-child a {
      display: inline-block;
      line-height: 46px;
    }

    .right-icons li:nth-last-child(-n+2) {
      width: auto !important;
      padding: 0 20px;
      flex: none;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .contact-info-premium {
        margin-bottom: 30px;
      }

      .notification-table-custom thead {
        display: none;
      }

      .notification-table-custom tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e6ed;
        border-radius: 16px;
        padding: 12px;
        background: white;
      }

      .notification-table-custom tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        border-bottom: 1px solid #edf2f7;
      }

      .notification-table-custom tbody td:last-child {
        border-bottom: none;
      }

      .notification-table-custom tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1e4663;
        min-width: 110px;
      }

      .updates-premium-header h3 {
        font-size: 1rem;
      }

      .form-premium {
        padding: 25px;
      }

      html {
        scroll-padding-top: 60px;
      }
    }

    .desktop-college-table {
      display: table;
    }

    .mobile-college-list {
      display: none;
    }

    @media (max-width: 767px) {
      .desktop-college-table {
        display: none !important;
      }

      .mobile-college-list {
        display: block;
      }

      .mobile-college-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 15px;
      }

      .mobile-college-name {
        font-size: 15px;
        font-weight: 600;
        color: #1e4663;
        margin-bottom: 10px;
      }
    }

    .sub-header .left-info li,
    .sub-header .right-icons li {
      display: inline-block;
      margin-right: 15px;
    }

    @media (max-width: 768px) {
      .sub-header .container .row {
        flex-direction: column;
        text-align: center;
      }

      .sub-header .col-md-8,
      .sub-header .col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
      }

      .request-form .col-md-8,
      .request-form .col-md-4 {
        text-align: center;
        margin-bottom: 15px;
      }

      .more-info .right-content {
        padding: 30px 20px;
      }

      .more-info .left-image img {
        height: 300px !important;
      }
    }

    .modal {
      z-index: 1000000 !important;
    }

    .modal-backdrop {
      z-index: 999999 !important;
    }

    body.modal-open {
      overflow: hidden !important;
      padding-right: 0 !important;
    }

    .popup-slider-modal .modal-dialog {
      max-width: 550px;
      margin: 1.75rem auto;
    }

    @media (max-width: 576px) {
      .popup-slider-modal .modal-dialog {
        max-width: calc(100% - 2rem);
        margin: 1rem;
      }
    }

    .popup-slider-modal .modal-content {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .popup-slider-modal .modal-header {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 20;
      border: none;
      padding: 0;
      width: auto;
      background: transparent;
    }

    .popup-slider-modal .btn-close {
      width: 20px;
      height: 20px;
      background-color: rgba(0, 0, 0, 0.7) !important;
      border-radius: 50%;
      color: white !important;
      opacity: 1;
      margin: 0;
    }

    .popup-slider-modal .btn-close:hover {
      opacity: 1;
      background-color: #e67e22;
      filter: none;
    }

    .popup-slider-modal .modal-body {
      padding: 0;
    }

    .slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .popup-slider {
      position: relative;
      width: 100%;
    }

    .popup-slide {
      display: none;
      width: 100%;
      text-align: center;
      animation: fadeEffect 0.5s ease;
    }

    .popup-slide.active {
      display: block;
    }

    @keyframes fadeEffect {
      from {
        opacity: 0;
        transform: scale(0.98);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .popup-slide img {
      width: 100%;
      height: 580px;
      object-fit: cover;
    }

    @media (max-width: 576px) {
      .popup-slide img {
        height: 280px;
      }
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 12px;
      z-index: 10;
    }

    .slider-nav button {
      background: rgba(0, 0, 0, 0.6);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 16px;
      font-weight: bold;
      color: white;
    }

    .slider-nav button:hover {
      background: #e67e22;
      transform: scale(1.05);
    }

    .video-premium-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 60px 0;
    }

    .video-premium-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .video-premium-header {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      padding: 20px 30px;
      text-align: center;
    }

    .video-premium-header h3 {
      color: white;
      margin: 0;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 1.3rem;
    }

    .video-premium-header h3 i {
      font-size: 28px;
      color: #e67e22;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      .video-premium-header h3 {
        font-size: 1.1rem;
      }

      .video-premium-header h3 i {
        font-size: 22px;
      }
    }

    .more-info .right-content {
      padding: 40px 30px;
    }

    .more-info .right-content h2 {
      font-size: 1.8rem;
    }

    /* ===== Governing Body cards ===== */
    .governing-body {
      background: #fff;
      padding: 70px 0;
    }

    .gb-card {
      background: #f8fafc;
      border-radius: 16px;
      padding: 25px 20px;
      text-align: center;
      border-top: 4px solid #e67e22;
      height: 100%;
      transition: all 0.3s ease;
    }

    .gb-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .gb-card .gb-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin: 0 auto 15px;
    }

    .gb-card h5 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .gb-card span {
      color: #e67e22;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ===== Services ===== */
    .services-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 70px 0;
    }

    .service-card-premium {
      background: #fff;
      border-radius: 18px;
      padding: 30px 25px;
      height: 100%;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .service-card-premium:hover {
      transform: translateY(-5px);
    }

    .service-card-premium .service-icon {
      font-size: 34px;
      color: #e67e22;
      margin-bottom: 15px;
    }

    .service-card-premium h5 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .service-card-premium p {
      color: #556070;
      font-size: 0.92rem;
      margin-bottom: 0;
    }

    /* ===== Stats ===== */
    .stats-band {
      background: linear-gradient(135deg, #1e4663 0%, #0a5c4b 100%);
      padding: 55px 0;
      position: relative;
      overflow: hidden;
    }

    .stats-band::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(230, 126, 34, 0.12);
    }

    .stat-item {
      text-align: center;
      color: #fff;
      position: relative;
      z-index: 2;
    }

    .stat-item .stat-number {
      font-size: 2.6rem;
      font-weight: 800;
      color: #f39c12;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .stat-item .stat-label {
      margin-top: 8px;
      font-size: 0.9rem;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .stat-item {
        margin-bottom: 25px;
      }

      .stat-item .stat-number {
        font-size: 2rem;
      }
    }

    /* ===== Process ===== */
    .process-premium {
      background: #fff;
      padding: 75px 0;
    }

    .process-track {
      position: relative;
      max-width: 950px;
      margin: 0 auto;
    }

    .process-track::before {
      content: '';
      position: absolute;
      top: 34px;
      left: 0;
      right: 0;
      height: 3px;
      background: repeating-linear-gradient(90deg, #e67e22 0, #e67e22 8px, transparent 8px, transparent 16px);
    }

    @media (max-width: 768px) {
      .process-track::before {
        display: none;
      }
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .process-step .step-circle {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid #e67e22;
      color: #1e4663;
      font-weight: 800;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .process-step h6 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .process-step p {
      color: #6b7684;
      font-size: 0.85rem;
      margin: 0;
      padding: 0 8px;
    }

    @media (max-width: 768px) {
      .process-step {
        margin-bottom: 30px;
      }
    }

    /* ===== FAQ ===== */
    .faq-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 75px 0;
    }

    .faq-premium .accordion-item {
      border: none;
      border-radius: 14px !important;
      overflow: hidden;
      margin-bottom: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    .faq-premium .accordion-button {
      font-weight: 700;
      color: #1e4663;
      background: #fff;
      padding: 18px 22px;
    }

    .faq-premium .accordion-button:not(.collapsed) {
      background: #1e4663;
      color: #fff;
    }

    .faq-premium .accordion-button:focus {
      box-shadow: none;
    }

    .faq-premium .accordion-button::after {
      filter: none;
    }

    .faq-premium .accordion-body {
      background: #fff;
      color: #556070;
      font-size: 0.92rem;
      padding: 18px 22px;
    }

    /* ===== Links ===== */
    .links-premium {
      background: #fff;
      padding: 55px 0 65px;
      border-top: 1px solid #eef2f6;
    }

    .link-chip {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f8fafc;
      border: 1px solid #e9edf2;
      border-radius: 12px;
      padding: 14px 16px;
      text-decoration: none;
      color: #1e4663;
      font-weight: 600;
      font-size: 0.88rem;
      height: 100%;
      transition: all 0.25s ease;
    }

    .link-chip i {
      color: #e67e22;
      font-size: 1.1rem;
    }

    .link-chip:hover {
      background: #1e4663;
      color: #fff;
      transform: translateY(-2px);
    }

    .link-chip:hover i {
      color: #f39c12;
    }

    /* ===== Gallery ===== */
    .gallery-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 75px 0;
    }

    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 220px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item .gallery-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, rgba(30, 70, 99, 0.9), transparent);
      color: #fff;
      padding: 14px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* ===== Dignitaries ===== */
    .dignitaries-premium {
      background: #ffffff;
      padding: 70px 0;
    }

    .dignitary-card {
      background: #f8fafc;
      border-radius: 18px;
      padding: 25px 20px 20px;
      text-align: center;
      border-bottom: 4px solid #e67e22;
      height: 100%;
      transition: all 0.3s ease;
    }

    .dignitary-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .dignitary-card .dignitary-img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #1e4663;
      margin: 0 auto 15px;
      display: block;
    }

    .dignitary-card h5 {
      color: #1e4663;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .dignitary-card .designation {
      color: #e67e22;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .dignitary-card .designation i {
      margin-right: 5px;
    }

    @media (max-width: 768px) {
      .dignitary-card .dignitary-img {
        width: 110px;
        height: 110px;
      }
    }

    /* ===== Footer ===== */
    .footer-premium {
      background: #12293b;
      color: #cfd8e2;
      padding: 60px 0 0;
    }

    .footer-premium h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .footer-premium p,
    .footer-premium li {
      font-size: 0.88rem;
      line-height: 1.9;
    }

    .footer-premium ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-premium ul li a {
      color: #cfd8e2;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-premium ul li a:hover {
      color: #f39c12;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      margin-right: 8px;
      transition: all 0.25s ease;
    }

    .footer-social a:hover {
      background: #e67e22;
      transform: translateY(-3px);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.82rem;
      text-align: center;
      color: #9fb0c0;
    }

    /* ===== SINGLE SMART SCROLL BUTTON ===== */
    .scroll-smart-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #e67e22, #f39c12);
      color: white;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
      font-size: 22px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.9;
    }

    .scroll-smart-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
      opacity: 1;
    }

    .scroll-smart-btn--down {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      box-shadow: 0 4px 15px rgba(30, 70, 99, 0.4);
    }

    .scroll-smart-btn--down:hover {
      box-shadow: 0 8px 25px rgba(30, 70, 99, 0.5);
    }

    @media (max-width: 576px) {
      .scroll-smart-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
      }
    }

    /* Dropdown */
    .navbar .dropdown-menu {
      border: 0;
      border-radius: 8px;
      padding: 10px 0;
      margin-top: 0;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    }

    .navbar .dropdown-item {
      padding: 10px 20px;
      font-size: 15px;
      color: #1e4663;
      transition: .3s;
    }

    .navbar .dropdown-item:hover {
      background: #1e4663;
      color: #fff;
    }

    .navbar .dropdown:hover>.dropdown-menu {
      display: block;
    }

    .navbar .dropdown-toggle::after {
      margin-left: 6px;
    }

    .badge-notify {
      background: #e67e22;
      color: #fff;
      border-radius: 30px;
      padding: 3px 10px;
      font-size: 0.7rem;
      margin-left: 6px;
    }

    .navbar .dropdown-submenu {
      position: relative;
    }

    .navbar .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
      border-radius: 8px;
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu {
      display: block;
    }

    .navbar .dropdown-submenu .dropdown-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar .dropdown-submenu .dropdown-item i {
      font-size: 12px;
      color: #aaa;
    }

    @media (max-width: 991.98px) {
      .navbar .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-top: 0;
        border-radius: 0;
        padding-left: 20px;
      }

      .navbar .dropdown-submenu .dropdown-item i {
        display: none;
      }
    }

    /* ===== FIXED HEADER & NAVIGATION ===== */
    .site-header {
      height: inherit;
      width: 100%;
      background-color: #ffffff !important;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-top {
      display: flex;
      justify-content: left;
      align-items: left;
      padding: 10px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .center-logo {
      display: flex;
      flex-direction: column;
      align-items: left;
    }

    .center-logo img {
      height: 100px;
      width: auto;
    }

    .nav-bar {
      background-color: #4caf50;
      width: 100%;
      position: relative;
      z-index: 1002;
    }

    .nav-container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .nav-menu {
      display: flex;
      width: auto;
      list-style: none;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 30px;
      margin: 0 auto;
      padding: 0;
      align-items: center;
    }

    .nav-menu>li {
      position: relative;
    }

    .nav-menu>li>a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      padding: 10px 8px;
      font-size: 14px;
      white-space: nowrap;
    }

    .nav-menu>li>a:hover {
      background-color: #388e3c;
      border-radius: 4px;
    }

    .nav-menu>li>a:not(:only-child)::after {
      content: " ▼";
      font-size: 10px;
      margin-left: 5px;
      vertical-align: middle;
    }

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      min-width: 220px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1003;
      border-top: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      border-bottom: 1px solid #eee;
    }

    .submenu li:last-child {
      border-bottom: none;
    }

    .submenu li a {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      transition: all 0.2s;
    }

    .submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    .nav-menu>li:hover .submenu {
      display: block;
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: #ffffff;
      font-size: 28px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 4px;
      transition: background 0.3s;
      z-index: 1003;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    @media (max-width: 991px) {
      .header-top {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .center-logo img {
        height: 70px;
      }

      .menu-toggle {
        display: block !important;
      }

      .nav-container {
        padding: 10px 15px;
        flex-wrap: wrap;
      }

      .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #4caf50;
        padding: 10px 0;
        margin: 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        max-height: 70vh;
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
        list-style: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
      }

      .nav-menu.open {
        display: flex !important;
      }

      .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
      }

      .nav-menu>li:last-child {
        border-bottom: none;
      }

      .nav-menu>li>a {
        padding: 12px 20px;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s;
        width: 100%;
      }

      .nav-menu>li>a:hover {
        background: #388e3c;
      }

      .nav-menu>li>a:not(:only-child)::after {
        content: " ▾";
        font-size: 12px;
        margin-left: 10px;
        transition: transform 0.3s;
      }

      .nav-menu>li.active-sub>a:not(:only-child)::after {
        transform: rotate(180deg);
      }

      .submenu {
        position: static !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-top: none !important;
        display: none !important;
        width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .nav-menu>li.active-sub .submenu {
        display: block !important;
      }

      .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .submenu li:last-child {
        border-bottom: none;
      }

      .submenu li a {
        padding: 10px 20px 10px 35px !important;
        color: #fff !important;
        font-size: 14px;
        background: transparent !important;
        display: block;
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .submenu li:last-child a {
        border-bottom: none;
      }

      .submenu li a:hover {
        background: #2e7d32 !important;
        color: #fff !important;
        padding-left: 45px !important;
      }

      .submenu li a::before {
        content: "▸ ";
        color: #a4c639;
        font-size: 12px;
      }
    }

    @media (max-width: 480px) {
      .nav-container {
        padding: 8px 12px;
      }

      .menu-toggle {
        font-size: 22px;
        padding: 4px 10px;
      }

      .nav-menu>li>a {
        padding: 10px 16px;
        font-size: 14px;
      }

      .submenu li a {
        padding: 8px 16px 8px 30px !important;
        font-size: 13px;
      }
    }

    #home,
    #about,
    #dignitaries,
    #governing-body,
    #services,
    #process,
    #gallery,
    #rti,
    #actrules,
    #faq,
    #contactus {
      scroll-margin-top: 120px;
    }

    body {
      overflow-x: hidden;
    }

    .main-banner,
    .more-info,
    .stats-band,
    .dignitaries-premium,
    .governing-body,
    .services-premium,
    .process-premium,
    .gallery-premium,
    .faq-premium,
    .links-premium,
    .footer-premium {
      position: relative;
      z-index: 1;
    }

    #about {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .more-info {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .more-info .right-content {
      padding: 20px 30px !important;
    }

    /* Hero image (just bg) */
    .hero-image-header {
      width: 100%;
      height: 400px;
      background-image: url('assets/images/slide_01.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    @media (max-width: 768px) {
      .hero-image-header {
        height: 250px;
      }
    }

    @media (max-width: 576px) {
      .hero-image-header {
        height: 180px;
      }
    }

    /* Map full width */
    .map-full-premium {
      padding: 0;
      background: #f8fafc;
    }

    .map-full-premium iframe {
      width: 100%;
      height: 420px;
      border: 0;
      display: block;
    }

    @media (max-width: 768px) {
      .map-full-premium iframe {
        height: 280px;
      }
    }

    /* Breadcrumb */
    .breadcrumb-wrap {
      background: #fff;
      padding: 18px 0;
      border-bottom: 1px solid #eef2f6;
    }

    .breadcrumb-wrap .breadcrumb {
      margin: 0;
      background: transparent;
      padding: 0;
    }

    .breadcrumb-wrap .breadcrumb-item a {
      color: #1e4663;
      font-weight: 500;
    }

    .breadcrumb-wrap .breadcrumb-item.active {
      color: #e67e22;
      font-weight: 600;
    }

    /* Sub-submenu styling */
    .sub-submenu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: #ffffff;
      min-width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1004;
      border-left: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      position: relative;
    }

    .submenu li:hover .sub-submenu {
      display: block;
    }

    .sub-submenu li {
      border-bottom: 1px solid #eee;
    }

    .sub-submenu li:last-child {
      border-bottom: none;
    }

    .sub-submenu li a {
      padding: 10px 15px;
      color: #333;
      font-size: 13px;
    }

    .sub-submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    @media (max-width: 991px) {
      .sub-submenu {
        position: static !important;
        left: 0 !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-left: none !important;
        display: none !important;
        width: 100%;
        padding-left: 20px;
      }

      .submenu li:hover .sub-submenu {
        display: none !important;
      }

      .nav-menu>li.active-sub .sub-submenu {
        display: block !important;
      }

      .sub-submenu li a {
        padding: 8px 20px 8px 45px !important;
        color: #fff !important;
        font-size: 13px;
      }

      .sub-submenu li a:hover {
        background: #2e7d32 !important;
        padding-left: 55px !important;
      }
    }

    /* ===== SUB-SUBMENU INDICATOR ===== */
    .submenu li.has-submenu>a:not(:only-child)::after {
      content: " ▸";
      font-size: 20px;
      margin-left: 5px;
      vertical-align: middle;
      float: right;
    }

    @media (max-width: 991px) {
      .submenu li.has-submenu>a:not(:only-child)::after {
        content: " ▾";
        font-size: 18px;
        float: right;
      }
    }


    /* affiliation page  */

        /* ===== TABLE STYLES ===== */
    .navbar-brand-logo {
      display: inline-block;
      padding: 5px 0;
    }

    .navbar-brand-logo img {
      max-height: 60px;
      width: auto;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .navbar-brand-logo img {
        max-height: 50px;
      }
    }

    .updates-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 80px 0;
      min-height: 80vh;
    }

    .updates-premium-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      width: 100%;
    }

    .updates-premium-header {
      background: #1e4663;
      padding: 20px 30px;
      color: white;
    }

    .updates-premium-header h3 {
      margin: 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.2rem;
    }

    .updates-premium-header h3 i {
      font-size: 24px;
    }

    .table-wrapper-premium {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding: 0;
    }

    .notification-table-custom {
      width: 100% !important;
      margin-bottom: 0;
      border-collapse: separate;
      border-spacing: 0;
    }

    .notification-table-custom tbody td strong {
      color: #1e4663;
    }

    .notification-table-custom tbody tr:hover {
      background-color: #f8fafc;
    }

    /* Hide payment_status and status columns */
    .notification-table-custom .col-payment,
    .notification-table-custom .col-status,
    .notification-table-custom td.hidden-col,
    .notification-table-custom th.hidden-col {
      display: none;
    }

    @media (max-width: 768px) {
      .notification-table-custom {
        min-width: 100%;
      }

      .notification-table-custom thead {
        display: none;
      }

      .notification-table-custom tbody tr {
        display: block;
        border-bottom: 2px solid #e67e22;
        margin-bottom: 15px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      }

      .notification-table-custom tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        border-bottom: 1px solid #edf2f7;
        width: 100% !important;
      }

      .notification-table-custom tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1e4663;
        min-width: 130px;
        font-size: 0.8rem;
        flex-shrink: 0;
      }

      .notification-table-custom tbody td:last-child {
        border-bottom: none;
      }

      /* Hide hidden columns in mobile too */
      .notification-table-custom tbody td.hidden-col {
        display: none !important;
      }
    }

    /* ===== HEADER STYLES - MATCHING INDEX.PHP ===== */
    .site-header {
      height: inherit;
      width: 100%;
      background-color: #ffffff !important;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-top {
      display: flex;
      justify-content: left;
      align-items: left;
      padding: 10px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .center-logo {
      display: flex;
      flex-direction: column;
      align-items: left;
    }

    .center-logo img {
      height: 100px;
      width: auto;
    }

    .nav-bar {
      background-color: #4caf50;
      width: 100%;
      position: relative;
      z-index: 1002;
    }

    .nav-container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .nav-menu {
      display: flex;
      width: auto;
      list-style: none;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 30px;
      margin: 0 auto;
      padding: 0;
      align-items: center;
    }

    .nav-menu>li {
      position: relative;
    }

    .nav-menu>li>a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      padding: 10px 8px;
      font-size: 14px;
      white-space: nowrap;
    }

    .nav-menu>li>a:hover {
      background-color: #388e3c;
      border-radius: 4px;
    }

    .nav-menu>li>a:not(:only-child)::after {
      content: " ▼";
      font-size: 10px;
      margin-left: 5px;
      vertical-align: middle;
    }

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      min-width: 220px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1003;
      border-top: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      border-bottom: 1px solid #eee;
    }

    .submenu li:last-child {
      border-bottom: none;
    }

    .submenu li a {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      transition: all 0.2s;
    }

    .submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    .nav-menu>li:hover .submenu {
      display: block;
    }

    /* ===== MOBILE MENU TOGGLE ===== */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: #ffffff;
      font-size: 28px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 4px;
      transition: background 0.3s;
      z-index: 1003;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    /* ===== RESPONSIVE MOBILE STYLES ===== */
    @media (max-width: 991px) {
      .header-top {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .center-logo img {
        height: 70px;
      }

      .menu-toggle {
        display: block !important;
      }

      .nav-container {
        padding: 10px 15px;
        flex-wrap: wrap;
      }

      .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #4caf50;
        padding: 10px 0;
        margin: 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        max-height: 70vh;
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
        list-style: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
      }

      .nav-menu.open {
        display: flex !important;
      }

      .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
      }

      .nav-menu>li:last-child {
        border-bottom: none;
      }

      .nav-menu>li>a {
        padding: 12px 20px;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s;
        width: 100%;
      }

      .nav-menu>li>a:hover {
        background: #388e3c;
      }

      .nav-menu>li>a:not(:only-child)::after {
        content: " ▾";
        font-size: 12px;
        margin-left: 10px;
        transition: transform 0.3s;
      }

      .nav-menu>li.active-sub>a:not(:only-child)::after {
        transform: rotate(180deg);
      }

      .submenu {
        position: static !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-top: none !important;
        display: none !important;
        width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .nav-menu>li.active-sub .submenu {
        display: block !important;
      }

      .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .submenu li:last-child {
        border-bottom: none;
      }

      .submenu li a {
        padding: 10px 20px 10px 35px !important;
        color: #fff !important;
        font-size: 14px;
        background: transparent !important;
        display: block;
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .submenu li:last-child a {
        border-bottom: none;
      }

      .submenu li a:hover {
        background: #2e7d32 !important;
        color: #fff !important;
        padding-left: 45px !important;
      }

      .submenu li a::before {
        content: "▸ ";
        color: #a4c639;
        font-size: 12px;
      }
    }

    /* ===== EXTRA SMALL DEVICES ===== */
    @media (max-width: 480px) {
      .nav-container {
        padding: 8px 12px;
      }

      .menu-toggle {
        font-size: 22px;
        padding: 4px 10px;
      }

      .nav-menu>li>a {
        padding: 10px 16px;
        font-size: 14px;
      }

      .submenu li a {
        padding: 8px 16px 8px 30px !important;
        font-size: 13px;
      }

      .center-logo img {
        height: 60px !important;
      }
    }

    .right-icons li:last-child {
      width: auto !important;
      padding: 0 15px;
      white-space: nowrap;
    }

    .right-icons li:last-child a {
      display: inline-block;
      line-height: 46px;
    }

    .right-icons li:nth-last-child(-n+2) {
      width: auto !important;
      padding: 0 20px;
      flex: none;
      white-space: nowrap;
    }

    .sub-header .left-info li,
    .sub-header .right-icons li {
      display: inline-block;
      margin-right: 15px;
    }

    @media (max-width: 768px) {
      .sub-header .container .row {
        flex-direction: column;
        text-align: center;
      }

      .sub-header .col-md-8,
      .sub-header .col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
      }
    }

    /* ===== BACK BUTTON ===== */
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #1e4663;
      text-decoration: none;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 30px;
      background: #fff;
      border: 1px solid #e0e6ed;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    .back-link:hover {
      background: #1e4663;
      color: #fff;
      border-color: #1e4663;
    }

    /* ===== SINGLE SMART SCROLL BUTTON ===== */
    .scroll-smart-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #e67e22, #f39c12);
      color: white;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
      font-size: 22px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.9;
    }

    .scroll-smart-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
      opacity: 1;
    }

    .scroll-smart-btn--down {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      box-shadow: 0 4px 15px rgba(30, 70, 99, 0.4);
    }

    .scroll-smart-btn--down:hover {
      box-shadow: 0 8px 25px rgba(30, 70, 99, 0.5);
    }

    @media (max-width: 576px) {
      .scroll-smart-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
      }
    }

    /* Fix header gap */
    #about {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    /* ===== FOOTER ===== */
    .footer-premium {
      background: #12293b;
      color: #cfd8e2;
      padding: 60px 0 0;
    }

    .footer-premium h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .footer-premium p,
    .footer-premium li {
      font-size: 0.88rem;
      line-height: 1.9;
    }

    .footer-premium ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-premium ul li a {
      color: #cfd8e2;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-premium ul li a:hover {
      color: #f39c12;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      margin-right: 8px;
      transition: all 0.25s ease;
    }

    .footer-social a:hover {
      background: #e67e22;
      transform: translateY(-3px);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.82rem;
      text-align: center;
      color: #9fb0c0;
    }

    /* Sub-submenu styling */
    .sub-submenu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: #ffffff;
      min-width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1004;
      border-left: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      position: relative;
    }

    .submenu li:hover .sub-submenu {
      display: block;
    }

    .sub-submenu li {
      border-bottom: 1px solid #eee;
    }

    .sub-submenu li:last-child {
      border-bottom: none;
    }

    .sub-submenu li a {
      padding: 10px 15px;
      color: #333;
      font-size: 13px;
    }

    .sub-submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    @media (max-width: 991px) {
      .sub-submenu {
        position: static !important;
        left: 0 !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-left: none !important;
        display: none !important;
        width: 100%;
        padding-left: 20px;
      }

      .submenu li:hover .sub-submenu {
        display: none !important;
      }

      .nav-menu>li.active-sub .sub-submenu {
        display: block !important;
      }

      .sub-submenu li a {
        padding: 8px 20px 8px 45px !important;
        color: #fff !important;
        font-size: 13px;
      }

      .sub-submenu li a:hover {
        background: #2e7d32 !important;
        padding-left: 55px !important;
      }
    }

    /* ===== SUB-SUBMENU INDICATOR ===== */
    .submenu li.has-submenu>a:not(:only-child)::after {
      content: " ▸";
      font-size: 20px;
      margin-left: 5px;
      vertical-align: middle;
      float: right;
    }

    @media (max-width: 991px) {
      .submenu li.has-submenu>a:not(:only-child)::after {
        content: " ▾";
        font-size: 18px;
        float: right;
      }
    }

    /* Container full width */
    .container-fluid-custom {
      max-width: 98%;
      margin: 0 auto;
      padding: 0 15px;
    }

    @media (min-width: 1400px) {
      .container-fluid-custom {
        max-width: 100%;
        padding: 0 30px;
      }
    }

    @media (max-width: 767px) {
      .container-fluid-custom {
        max-width: 100%;
        padding: 0 10px;
      }
    }


    /* notification page  */

        /* ===== GLOBAL RESETS ===== */
    body {
      font-family: 'Poppins', sans-serif;
    }

    /* ===== COMPACT POPUP MODAL DESIGN ===== */
    .premium-modal-content {
      border-radius: 16px;
      overflow: hidden;
      border: none;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      background: #ffffff;
    }

    .premium-modal-header {
      background: linear-gradient(135deg, #1e4663 0%, #0a5c4b 100%);
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 3px solid #e67e22;
      min-height: 50px;
    }

    .premium-modal-header h4 {
      color: #ffffff;
      font-weight: 700;
      font-size: 1.25rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .premium-modal-header h4 i {
      color: #e67e22;
      font-size: 20px;
    }

    .premium-modal-header .btn-close-white {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 0;
    }

    .premium-modal-header .btn-close-white:hover {
      background: #e67e22;
      transform: rotate(90deg);
    }

    .premium-modal-body {
      padding: 16px 20px 12px;
      background: #f8fafc;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    @media (max-width: 576px) {
      .info-grid {
        grid-template-columns: 1fr;
        gap: 6px;
      }
    }

    .info-card-premium {
      background: #ffffff;
      border-radius: 10px;
      padding: 18px 12px;
      border-left: 3px solid #e67e22;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.2s ease;
    }

    .info-card-premium:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .info-card-premium label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: #e67e22;
      margin-bottom: 1px;
    }

    .info-card-premium label i {
      margin-right: 4px;
      font-size: 0.6rem;
    }

    .info-card-premium p {
      margin: 0;
      font-size: 0.78rem;
      font-weight: 600;
      color: #1e4663;
      word-break: break-word;
      line-height: 1.3;
    }

    .info-card-premium.full-width {
      grid-column: 1 / -1;
    }

    /* ===== TABLE STYLES - FIXED FOR DESKTOP ===== */
    .navbar-brand-logo {
      display: inline-block;
      padding: 5px 0;
    }

    .navbar-brand-logo img {
      max-height: 60px;
      width: auto;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .navbar-brand-logo img {
        max-height: 50px;
      }
    }

    .updates-premium {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
      padding: 80px 0;
      min-height: 80vh;
    }

    .updates-premium-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      width: 100%;
    }

    .updates-premium-header {
      background: #1e4663;
      padding: 20px 30px;
      color: white;
    }

    .updates-premium-header h3 {
      margin: 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.2rem;
    }

    .updates-premium-header h3 i {
      font-size: 24px;
    }

    .table-wrapper-premium {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding: 0 4px;
    }

    /* --- DESKTOP TABLE FIX --- */
    .notification-table-custom {
      width: 100% !important;
      min-width: 950px;
      margin-bottom: 0;
      border-collapse: separate;
      border-spacing: 0;
      table-layout: fixed;
    }

    /* Column widths */
    .notification-table-custom thead th:nth-child(1),
    .notification-table-custom tbody td:nth-child(1) {
      width: 60px;
    }

    .notification-table-custom thead th:nth-child(2),
    .notification-table-custom tbody td:nth-child(2) {
      width: 35%;
    }

    .notification-table-custom thead th:nth-child(3),
    .notification-table-custom tbody td:nth-child(3) {
      width: 130px;
    }

    .notification-table-custom thead th:nth-child(4),
    .notification-table-custom tbody td:nth-child(4) {
      width: 180px;
      /* Increased to fit expiry date + label */
    }

    .notification-table-custom thead th:nth-child(5),
    .notification-table-custom tbody td:nth-child(5) {
      width: 110px;
    }

    /* Force single line on desktop for date columns */
    @media (min-width: 768px) {

      .notification-table-custom tbody td:nth-child(3),
      .notification-table-custom tbody td:nth-child(4),
      .notification-table-custom tbody td:nth-child(5),
      .notification-table-custom thead th:nth-child(3),
      .notification-table-custom thead th:nth-child(4),
      .notification-table-custom thead th:nth-child(5) {
        white-space: nowrap !important;
      }
    }

    .notification-table-custom thead th {
      background: #f8f9fa;
      color: #1e4663;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 14px 12px;
      border-bottom: 2px solid #e67e22;
    }

    .notification-table-custom tbody td {
      padding: 14px 12px;
      vertical-align: middle;
      font-size: 0.95rem;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .notification-table-custom tbody td strong {
      color: #1e4663;
    }

    .notification-table-custom tbody td .btn-outline-primary {
      border-color: #1e4663;
      color: #1e4663;
      font-size: 0.75rem;
      padding: 4px 12px;
    }

    .notification-table-custom tbody td .btn-outline-primary:hover {
      background: #1e4663;
      color: #fff;
      border-color: #1e4663;
    }

    .badge-notify {
      background: #e67e22;
      color: #fff;
      border-radius: 30px;
      padding: 3px 10px;
      font-size: 0.7rem;
      margin-left: 6px;
    }

    /* ===== HEADER STYLES ===== */
    .site-header {
      height: inherit;
      width: 100%;
      background-color: #ffffff !important;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-top {
      display: flex;
      justify-content: left;
      align-items: left;
      padding: 10px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .center-logo {
      display: flex;
      flex-direction: column;
      align-items: left;
    }

    .center-logo img {
      height: 100px;
      width: auto;
    }

    .nav-bar {
      background-color: #4caf50;
      width: 100%;
      position: relative;
      z-index: 1002;
    }

    .nav-container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .nav-menu {
      display: flex;
      width: auto;
      list-style: none;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 30px;
      margin: 0 auto;
      padding: 0;
      align-items: center;
    }

    .nav-menu>li {
      position: relative;
    }

    .nav-menu>li>a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      padding: 10px 8px;
      font-size: 14px;
      white-space: nowrap;
    }

    .nav-menu>li>a:hover {
      background-color: #388e3c;
      border-radius: 4px;
    }

    .nav-menu>li>a:not(:only-child)::after {
      content: " ▼";
      font-size: 10px;
      margin-left: 5px;
      vertical-align: middle;
    }

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      min-width: 220px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1003;
      border-top: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      border-bottom: 1px solid #eee;
    }

    .submenu li:last-child {
      border-bottom: none;
    }

    .submenu li a {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      transition: all 0.2s;
    }

    .submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    .nav-menu>li:hover .submenu {
      display: block;
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: #ffffff;
      font-size: 28px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 4px;
      transition: background 0.3s;
      z-index: 1003;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    @media (max-width: 991px) {
      .header-top {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .center-logo img {
        height: 70px;
      }

      .menu-toggle {
        display: block !important;
      }

      .nav-container {
        padding: 10px 15px;
        flex-wrap: wrap;
      }

      .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #4caf50;
        padding: 10px 0;
        margin: 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        max-height: 70vh;
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
        list-style: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
      }

      .nav-menu.open {
        display: flex !important;
      }

      .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
      }

      .nav-menu>li:last-child {
        border-bottom: none;
      }

      .nav-menu>li>a {
        padding: 12px 20px;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s;
        width: 100%;
      }

      .nav-menu>li>a:hover {
        background: #388e3c;
      }

      .nav-menu>li>a:not(:only-child)::after {
        content: " ▾";
        font-size: 12px;
        margin-left: 10px;
        transition: transform 0.3s;
      }

      .nav-menu>li.active-sub>a:not(:only-child)::after {
        transform: rotate(180deg);
      }

      .submenu {
        position: static !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-top: none !important;
        display: none !important;
        width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .nav-menu>li.active-sub .submenu {
        display: block !important;
      }

      .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .submenu li:last-child {
        border-bottom: none;
      }

      .submenu li a {
        padding: 10px 20px 10px 35px !important;
        color: #fff !important;
        font-size: 14px;
        background: transparent !important;
        display: block;
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .submenu li:last-child a {
        border-bottom: none;
      }

      .submenu li a:hover {
        background: #2e7d32 !important;
        color: #fff !important;
        padding-left: 45px !important;
      }

      .submenu li a::before {
        content: "▸ ";
        color: #a4c639;
        font-size: 12px;
      }
    }

    @media (max-width: 480px) {
      .nav-container {
        padding: 8px 12px;
      }

      .menu-toggle {
        font-size: 22px;
        padding: 4px 10px;
      }

      .nav-menu>li>a {
        padding: 10px 16px;
        font-size: 14px;
      }

      .submenu li a {
        padding: 8px 16px 8px 30px !important;
        font-size: 13px;
      }

      .center-logo img {
        height: 60px !important;
      }
    }

    .right-icons li:last-child {
      width: auto !important;
      padding: 0 15px;
      white-space: nowrap;
    }

    .right-icons li:last-child a {
      display: inline-block;
      line-height: 46px;
    }

    .right-icons li:nth-last-child(-n+2) {
      width: auto !important;
      padding: 0 20px;
      flex: none;
      white-space: nowrap;
    }

    .sub-header .left-info li,
    .sub-header .right-icons li {
      display: inline-block;
      margin-right: 15px;
    }

    @media (max-width: 768px) {
      .sub-header .container .row {
        flex-direction: column;
        text-align: center;
      }

      .sub-header .col-md-8,
      .sub-header .col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
      }
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #1e4663;
      text-decoration: none;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 30px;
      background: #fff;
      border: 1px solid #e0e6ed;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    .back-link:hover {
      background: #1e4663;
      color: #fff;
      border-color: #1e4663;
    }

    .scroll-smart-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #e67e22, #f39c12);
      color: white;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
      font-size: 22px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.9;
    }

    .scroll-smart-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
      opacity: 1;
    }

    .scroll-smart-btn--down {
      background: linear-gradient(135deg, #1e4663, #0a5c4b);
      box-shadow: 0 4px 15px rgba(30, 70, 99, 0.4);
    }

    .scroll-smart-btn--down:hover {
      box-shadow: 0 8px 25px rgba(30, 70, 99, 0.5);
    }

    @media (max-width: 576px) {
      .scroll-smart-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
      }
    }

    #about {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    /* ===== FOOTER ===== */
    .footer-premium {
      background: #12293b;
      color: #cfd8e2;
      padding: 60px 0 0;
    }

    .footer-premium h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .footer-premium p,
    .footer-premium li {
      font-size: 0.88rem;
      line-height: 1.9;
    }

    .footer-premium ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-premium ul li a {
      color: #cfd8e2;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-premium ul li a:hover {
      color: #f39c12;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      margin-right: 8px;
      transition: all 0.25s ease;
    }

    .footer-social a:hover {
      background: #e67e22;
      transform: translateY(-3px);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.82rem;
      text-align: center;
      color: #9fb0c0;
    }

    /* ===== MOBILE CARD VIEW ===== */
    @media (max-width: 767px) {
      .notification-table-custom thead {
        display: none;
      }

      .notification-table-custom,
      .notification-table-custom tbody,
      .notification-table-custom tr,
      .notification-table-custom td {
        display: block;
        width: 100%;
      }

      .notification-table-custom {
        min-width: unset;
        table-layout: auto;
      }

      .notification-table-custom tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e6ed;
        border-radius: 16px;
        padding: 12px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      }

      .notification-table-custom tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-bottom: 1px solid #edf2f7;
        font-size: 0.9rem;
        min-height: 44px;
        white-space: normal !important;
        word-break: break-word;
        width: 100% !important;
      }

      .notification-table-custom tbody td:last-child {
        border-bottom: none;
      }

      .notification-table-custom tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1e4663;
        min-width: 110px;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
      }

      .notification-table-custom tbody td[data-label="Description"] strong {
        font-size: 0.9rem;
      }

      .notification-table-custom tbody td .btn-outline-primary {
        font-size: 0.7rem;
        padding: 3px 10px;
      }

      .updates-premium-header h3 {
        font-size: 1rem;
      }

      .updates-premium-header {
        padding: 15px 20px;
      }

      .table-wrapper-premium {
        padding: 0;
      }

      /* Override column widths on mobile */
      .notification-table-custom thead th:nth-child(1),
      .notification-table-custom tbody td:nth-child(1),
      .notification-table-custom thead th:nth-child(2),
      .notification-table-custom tbody td:nth-child(2),
      .notification-table-custom thead th:nth-child(3),
      .notification-table-custom tbody td:nth-child(3),
      .notification-table-custom thead th:nth-child(4),
      .notification-table-custom tbody td:nth-child(4),
      .notification-table-custom thead th:nth-child(5),
      .notification-table-custom tbody td:nth-child(5) {
        width: 100% !important;
      }
    }

    @media (max-width: 480px) {
      .notification-table-custom tbody td {
        padding: 8px 10px;
        font-size: 0.82rem;
        flex-wrap: wrap;
        gap: 4px 0;
      }

      .notification-table-custom tbody td::before {
        min-width: 90px;
        font-size: 0.7rem;
      }

      .notification-table-custom tbody tr {
        padding: 8px;
        margin-bottom: 14px;
      }

      .notification-table-custom tbody td[data-label="Description"] strong {
        font-size: 0.82rem;
        word-break: break-word;
      }

      .badge-notify {
        font-size: 0.6rem;
        padding: 2px 8px;
      }
    }

    /* Sub-submenu styling */
    .sub-submenu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: #ffffff;
      min-width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      list-style: none;
      z-index: 1004;
      border-left: 3px solid #4caf50;
      padding: 0;
    }

    .submenu li {
      position: relative;
    }

    .submenu li:hover .sub-submenu {
      display: block;
    }

    .sub-submenu li {
      border-bottom: 1px solid #eee;
    }

    .sub-submenu li:last-child {
      border-bottom: none;
    }

    .sub-submenu li a {
      padding: 10px 15px;
      color: #333;
      font-size: 13px;
    }

    .sub-submenu li a:hover {
      background-color: #f1f8e9;
      color: #4caf50;
      padding-left: 20px;
    }

    @media (max-width: 991px) {
      .sub-submenu {
        position: static !important;
        left: 0 !important;
        background: #3d8b40 !important;
        box-shadow: none !important;
        border-left: none !important;
        display: none !important;
        width: 100%;
        padding-left: 20px;
      }

      .submenu li:hover .sub-submenu {
        display: none !important;
      }

      .nav-menu>li.active-sub .sub-submenu {
        display: block !important;
      }

      .sub-submenu li a {
        padding: 8px 20px 8px 45px !important;
        color: #fff !important;
        font-size: 13px;
      }

      .sub-submenu li a:hover {
        background: #2e7d32 !important;
        padding-left: 55px !important;
      }
    }

    /* ===== SUB-SUBMENU INDICATOR ===== */
    .submenu li.has-submenu>a:not(:only-child)::after {
      content: " ▸";
      font-size: 20px;
      margin-left: 5px;
      vertical-align: middle;
      float: right;
    }

    @media (max-width: 991px) {
      .submenu li.has-submenu>a:not(:only-child)::after {
        content: " ▾";
        font-size: 18px;
        float: right;
      }
    }