

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }
      body {
        color: #eaeaea;
        line-height: 1.6;
        margin: 0;
        max-width: 100%;
      }
      .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: linear-gradient(145deg, #021f2b, #043b4f);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      }
      .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 90%;
        margin: auto;
        padding: 0.8rem 1.5rem;
      }

      .logo {
        width: 250px;
      }

      .nav-links {
        display: flex;
        gap: 1.5rem;
        transition: all 0.3s ease;
      }
      .nav-links a {
        font-size: 20px;
        text-decoration: none;
        color: whitesmoke;
        font-weight: 500;
        position: relative;
        padding: 5px 0;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #29bacd;
        transition: 0.3s;
      }
      .nav-links a:hover {
        color: #eaeaea;
      }
      .nav-links a:hover::after,
      .nav-links a.active::after {
        width: 100%;
      }
      .nav-links a.active {
        color: #00bcd4;
      }

      .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
      }
      .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background: #eaeaea;
        border-radius: 2px;
        transition: 0.3s;
      }
      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
      }
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
      }

      @media (max-width: 1165px) {
        .menu-toggle {
          display: flex;
        }
        .nav-links {
          position: absolute;
          top: 62px;
          left: 0;
          width: 100%;
          background: linear-gradient(145deg, #021f2b, #043b4f);
          flex-direction: column;
          align-items: center;
          max-height: 0;
          overflow: hidden;
          border-top: 1.5px solid rgb(4, 91, 98);
        }
        .nav-links.open {
          max-height: 480px;
          padding: 1rem 0;
        }
        .nav-links a {
          color: #eaeaea;
          padding: 0.4rem 0;
          width: 100%;
          text-align: center;
        }
      }
      /* Notification*/
      #notification {
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
          url("https://jshp.online/main/img/notf5.jpg");
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        padding-top: 30px;
      }
      h1 {
        text-align: center;
        padding: 10px;
        margin: auto;
        margin-bottom: 20px;
        font-size: 26px;
        font-weight: 700;
        color: #012e07;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        max-height: 100px;
        max-width: 1000px;
      }

      /* MAIN CONTAINER */
      .notification-box {
        max-width: 1000px;
        margin: auto;
        background: #fff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
        overflow: hidden;
        max-height: 700px;
        display: flex;
        flex-direction: column;
      }

      /* SCROLL AREA */
      .notif-scroll {
        overflow-y: auto;
        padding: 10px 0;
      }

      /* CUSTOM SCROLLBAR */
      .notif-scroll::-webkit-scrollbar {
        width: 8px;
      }
      .notif-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
      }
      .notif-scroll::-webkit-scrollbar-thumb {
        background: #c4c4c4;
        border-radius: 10px;
      }

      /* NOTIFICATION CARD */
      .notif-item {
        background: #ffffff;
        margin: 10px 15px;
        padding: 16px;
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.06);
        transition: 0.3s;
      }

      .notif-item:hover {
        transform: translateY(-3px);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.12);
      }

      .notif-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
      }

      .notif-date {
        font-size: 13px;
        color: #777;
      }

      /* PDF ICON BUTTON */
     .pdf-btn {
        background: linear-gradient(180deg, #00b6c7, #008a97);
        color: #fff;
        font-size: 20px;
        padding: 10px 14px;
        border-radius: 10px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        white-space: nowrap;
      }

      .pdf-btn:hover {
        background: linear-gradient(180deg, #30939c, #017681);
      }

      /* MOBILE FRIENDLY */
      @media (max-width: 600px) {
        .notif-item {
          flex-direction: column;
          align-items: flex-start;
        }
#notification {
        min-height: 60vh;
        padding-bottom: 30px;
      }
        .pdf-btn {
          width: 100%;
          margin-top: 10px;
        }

        .notif-title {
          font-size: 15px;
        }
      }
      /* Contact Section */
      #contact {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url("https://jshp.online/main/img/cont5.jpg");
        background-size: cover;
        background-position: center;
        min-height: 90vh;
        padding: 56px 18px;
        scroll-margin-top: 100px;
      }

      .section-title {
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        margin: 0 0 28px;
        color: #ffffff;
      }

      .contact-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: start;
      }

      /* Left info column */
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .contact-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 14px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(12, 44, 50, 0.06);
      }
      #contact a {
        color: inherit;
        text-decoration: none;
      }

      .contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 10px;
        background: linear-gradient(180deg, #00b6c7, #00a1b1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
      }

      .contact-details h4 {
        margin: 0 0 6px;
        font-size: 16px;
        color: #ffffff;
      }

      .contact-details p {
        margin: 0;
        font-size: 14px;
        color: #ffffff;
        line-height: 1.45;
        word-break: break-word;
      }

      /* Right form column */
      .contact-form {
        background: rgba(255, 255, 255, 0.95);
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 18px 35px rgba(7, 41, 47, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.03);
      }

      .contact-form h5 {
        margin: 0 0 18px;
        font-size: 20px;
        color: #07373e;
        text-align: left;
      }

      .form-group {
        margin-bottom: 14px;
      }

      .form-group label {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        color: #0b4a5a;
        font-weight: 600;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid #e4f0f2;
        background: #fff;
        font-size: 15px;
        color: #12343a;
        transition: box-shadow 0.18s ease, border-color 0.18s ease;
      }

      .form-group input::placeholder,
      .form-group textarea::placeholder {
        color: #9fb5b8;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: #00b6c7;
        box-shadow: 0 6px 18px rgba(0, 182, 199, 0.12);
        background: #ffffff;
      }

      textarea.form-control {
        resize: vertical;
        min-height: 120px;
        max-height: 320px;
      }

      .submit-btn {
        display: inline-block;
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
        border: none;
        font-size: 16px;
        font-weight: 700;
        background: linear-gradient(180deg, #00b6c7, #008a97);
        color: white;
        cursor: pointer;
        transition: transform 0.18s ease, box-shadow 0.18s ease;
      }

      .submit-btn:active {
        transform: translateY(1px);
      }

      .submit-btn:hover {
        box-shadow: 0 10px 30px rgba(0, 136, 150, 0.16);
      }

      #status {
        margin-top: 12px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #0b4a5a;
        min-height: 20px;
      }

      /* -------------------------
         Mobile adjustments (responsive)
         ------------------------- */
      @media (max-width: 960px) {
        .contact-container {
          gap: 22px;
        }
      }

      /* Stack columns and enlarge touch targets */
      @media (max-width: 780px) {
        #contact {
          padding: 32px 14px;
        }
        .section-title {
          font-size: 24px;
          margin-bottom: 18px;
        }

        .contact-container {
          grid-template-columns: 1fr;
        }

        .contact-item {
          padding: 12px;
          gap: 12px;
        }

        .contact-icon {
          width: 42px;
          height: 42px;
          font-size: 18px;
          border-radius: 10px;
        }

        .contact-form {
          padding: 18px;
        }

        .contact-details h4 {
          font-size: 15px;
        }
        .contact-details p {
          font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
          padding: 12px;
          font-size: 15px;
        }

        .submit-btn {
          padding: 12px;
          font-size: 15px;
        }
      }

      /* Very small phones */
      @media (max-width: 420px) {
        #contact {
          padding: 24px 12px;
        }
        .section-title {
          font-size: 22px;
        }

        .contact-item {
          gap: 10px;
          padding: 10px;
        }
        .contact-icon {
          width: 40px;
          height: 40px;
          font-size: 17px;
        }
        .contact-details h4 {
          font-size: 14px;
        }
        .contact-details .Address {
          font-size: 13px;
        }

        .form-group label {
          font-size: 13px;
        }
        .form-group input,
        .form-group textarea {
          font-size: 14px;
          padding: 10px;
        }
        .submit-btn {
          font-size: 15px;
          padding: 12px;
        }
      }
     /*---footer---*/
.modern-footer {
  background: linear-gradient(145deg, #021f2b, #043b4f);
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #eaf6f7;
}

/* Copyright */
.footer-copy {
  font-size: 0.8rem;
  color: #ffffff;
}

/* Developer — single line */
.footer-dev {
  font-size: 0.7rem;
  color: #c9f3f4;
  text-align: center;
  white-space: nowrap;      /* KEY */
}

.footer-dev span {
  display: inline;
  
}

.footer-dev strong {
  font-weight: 600;
  color: #ffffff;
  margin: 0 0.3rem;
}

.footer-dev em {
   color: #ffffff;
  font-style: normal;
  opacity: 0.85;
  margin-left: 0.3rem;
}

/* Responsive */
@media (max-width: 640px) {
  .footer-wrap {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .footer-dev {
    white-space: normal;    /* allow wrap on small screens */
  }
}