* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background-color: #f4f4f7;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: #fff;
  position: relative;
  z-index: 1000;
}

.left-buttons a {
  margin-right: 12px;
  background-color: #2596be;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}

.left-buttons a:hover {
  background-color: #006699;
}

.support-btn {
  background-color: #fff;
  color: #0073e6;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.support-btn:hover {
  background-color: #f1f1f1;
}


    .container {
      display: flex;
      flex-grow: 1;
      flex-wrap: wrap;
      min-height: 0;
    }

    .left-section {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: linear-gradient(to bottom right, #1e3c72, #2a5298);
      color: white;
      padding: 60px 30px;
      text-align: center;
    }

    .left-section img {
      width: 150px;
      margin-bottom: 30px;
    }

    .left-section h1 {
      font-size: 2rem;
      line-height: 1.4;
    }

    .right-section {
      flex: 2;
      background-color: white;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .right-section h1 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      color: #333;
      text-align: center;
    }

    .grid {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .box {
      background: #fff;
      border-radius: 16px;
      width: 250px;
      padding: 20px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 220px;
    }

    .box:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    }

    .box img {
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .box a {
      margin-top: auto;
      padding: 10px 20px;
      background-color: #007fa8;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
    }

    .box a:hover {
      background-color: #005f7a;
      transform: translateY(-2px);
    }

    footer {
      background-color: #007fa8;
      color: white;
      padding: 15px 20px;
      font-size: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .social-icons a {
      color: white;
      margin: 0 8px;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #f1a208;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left-section, .right-section {
        width: 100%;
        flex: unset;
      }

      .left-section {
        padding: 40px 20px;
      }

      .right-section {
        padding: 30px 20px;
      }
    }
    
    .admin-button {
      position: absolute;
      bottom: 130px;
      left: 150px;
      display: flex;
      gap: 10px;
    }

    .admin-button a {
      background-color: #005f7a;
      color: white;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 20px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .admin-button a:hover {
      background-color: #005f7a;
    }
    
    
    .update-strip {
      width: 100%;
      background-color: #2596be;
      padding: 10px 0;
      overflow: hidden;
      position: relative;
      font-size: 16px;
      font-weight: bold;
      color: #333;
      margin-bottom: 80px;
    }
    
    .update-strip .scroll-text {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 15s linear infinite;
    }
    
    @keyframes scroll-left {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }
    
    .circle-timer {
    width: 140px;
    height: 140px;
    margin: 20px auto 0 auto;
    position: relative;
}
.timer-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.time-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    font-weight: 600;
    color: #0071e3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

    /* Modal Styling - Microsoft Fluent Inspired */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.3s ease;
}

.modal-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1e3c72;
}

.modal-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.close-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #e81123;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.close-btn:hover {
  background-color: #c50f1f;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.talk-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: darkblue;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.talk-btn:hover {
  background-color: #005a9e;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}

.loader-container.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hand {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 120px;
  margin-bottom: 20px;
}

.finger {
  width: 30px;
  height: 80px;
  background-color: darkblue;
  margin: 0 5px;
  border-radius: 10px 10px 15px 15px;
  position: relative;
  animation: tap 1s infinite ease-in-out;
}

.finger::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: #b499f7;
  border-radius: 50%;
}

.finger::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 4px;
  background-color: #7e65c2;
  border-radius: 5px;
}

.finger1 {
  animation-delay: 0s;
}
.finger2 {
  animation-delay: 0.1s;
}
.finger3 {
  animation-delay: 0.2s;
}
.finger4 {
  animation-delay: 0.3s;
}

.thumb {
  position: absolute;
  left: 165px; /* adjust based on finger width/spacing */
  bottom: 10px;
  width: 40px;
  height: 28px;
  background-color: darkblue;
  border-radius: 30px;
  transform-origin: left center;
  animation: thumb-tap 1s infinite ease-in-out;
  z-index: 1;
}


.thumb::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-color: #b499f7;
  border-radius: 50%;
}



@keyframes tap {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(10px);
  }
}

@keyframes thumb-tap {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(5px);
  }
}

.loading-text {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  opacity: 0;
  animation: blink 1.5s infinite;
}

.dot:nth-child(1) {
  animation-delay: 0.3s;
}

.dot:nth-child(2) {
  animation-delay: 0.6s;
}

.dot:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes blink {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}