.header-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/* For tablets and mobile devices */
@media (max-width: 768px) {
    .header-title {
        font-size: 12px; /* Adjust font size for tablets */
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .header-title {
               font-size: 12px;
        text-align: start;
    }
}


.header {
    background: #05007e;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    text-align: center;
}

.logo img {
    max-height: 80px;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
   }

   /* Mobile Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        display: none;
        background: white;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 15px 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar.active ul {
        display: flex;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

.slide-title
{
        padding: 10px;
    font-size: 60px;
    font-weight: 700;
}


/* For tablets and mobile devices */
@media (max-width: 768px) {
   .slide-title
{
       
    font-size: 30px;
 
}
}

/* For mobile devices */
@media (max-width: 480px) {
   .slide-title
{
      
    font-size: 15px;
   
}
}


.details .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #010483;
}

.details .content ul {
    list-style: none;
    padding: 0;
}

.details .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #1acc8d;
}

.details .content ul li {
    padding-bottom: 10px;
}

.details .content ul li a {
    color: #000;
}

 .news-container {
            width: 300px;
            background-color: #00008B;
            color: white;
            padding: 10px;
            text-align: center;
            border-radius: 15px 15px 0px 0px
        }
        .news-box {
               width: 300px;
    height: 350px;
    overflow: hidden;
    border: 2px solid #f7f20e;
    border-top: none;
    position: relative;
        }
        .news-content {
            display: flex;
            flex-direction: column;
            position: absolute;
            width: 100%;
            animation: scrollUp 10s linear infinite;
        }
        .news-item {
            padding: 10px;
            border-bottom: 1px solid #ddd;
            background: white;
            color: black;
        }
        .footer {
            background-color: #05007e;
            color: white;
            padding: 10px;
            text-align: center;
            margin-top: 10px;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #010483;
    text-align: center;
    margin-bottom: 40px;
}   


.about p
{
    text-align: justify;
}


.about .buy-btn
{
        display: inline-block;
    padding: 12px 40px;
    border-radius: 6px;
    color: var(--color-primary);
    transition: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid var(--color-primary);
}

.about .buy-btn:hover 
{
    background: #05007e;
    color: #fff;
}

.qr-img
{
    width: 50%; 
    text-align: center;
}


/* For tablets and mobile devices */
@media (max-width: 768px) {
   .qr-img
{
    width: 30%; 
    text-align: center;
}
}

/* For mobile devices */
@media (max-width: 480px) {
   .qr-img
{
    width: 80%; 
    text-align: center;
}
}


  .blinking-alert {
      color: red;
      font-weight: bold;
      animation: blink 1s step-start infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }


  .qr-table
  {
    border-collapse: collapse; 
    width: 100%; 
    text-align: center; border:
     2px solid #4CAF50; 
  }

  .qr-table th td
  {
    border: 2px solid #4CAF50 !important; 
    padding: 10px !important;
     text-align: center !important;

  }


  /* Modal styles */
    .modal {
      display: none; 
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 20px;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .modal-content img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .modal-title {
      font-size: 15px;
      margin: 15px 0;
    }

    .modal-button {
      padding: 10px 20px;
      background-color: #05007e;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 15px;
    }

    .modal-button:hover {
      background-color: #0056b3;
    }

     .close-icon {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }

    .close-icon:hover {
      color: red;
    }


.updates-doc-btn
{
    display: inline-block;
    padding: 12px 40px;
    border-radius: 6px;
    color: var(--color-primary);
    transition: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid var(--color-primary
}
