.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
    .navbar-nav{
    gap: 25px !important;
  }
    :root{
      --blue:#002e5b;
      --orange:#fe9833;
      --text:#31566f;
      --light:#f8fbff;
    }

    body{
      margin:0;
      font-family: Arial, sans-serif;
      background:#fff;
      color:var(--text);
    }

    .top-strip{
      background:var(--blue);
      color:#fff;
      font-size:13px;
      padding:8px 0;
    }

    .brand-header{
      padding:22px 0;
      background:#fff;
    }

    .brand-logo{
      width:60px;
      height:60px;
      object-fit:contain;
    }

    .brand-title{
      font-size:28px;
      font-weight:800;
      color:#123f5b;
      margin:0;
      line-height:1.1;
    }

    .brand-subtitle{
      font-size:14px;
      color:#777;
      margin-top:4px;
    }

    .main-nav{
      background: #03315d;
      border-top:4px solid var(--orange);
    }

    .main-nav .nav-link{
      color:#dbeaf4;
      font-size:14px;
      padding:10px;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link.active{
      background:rgba(255,255,255,0.12);
      color:#fff;
      border-radius:4px;
      font-weight: 800;
    }

    .ticker-bar{
      background:var(--blue);
      color:#fff;
      border-top:1px solid rgba(255,255,255,0.2);
      overflow:hidden;
      white-space:nowrap;
      font-size:14px;
    }

    .ticker-track{
      display:inline-block;
      animation:ticker 22s linear infinite;
      padding:12px 0;
    }

    .ticker-track span{
      margin-right:55px;
    }

    @keyframes ticker{
      from{transform:translateX(0);}
      to{transform:translateX(-50%);}
    }

    .hero-section{
      background:linear-gradient(90deg,#f6fbff,#fff8ef);
      padding:34px 0 42px;
    }

    .hero-carousel{
      max-width:1000px;
      margin:auto;
      border-radius:8px;
      overflow:hidden;
      box-shadow:0 6px 18px rgba(0,0,0,.22);
    }

    .hero-carousel img{
      height:400px;
      object-fit:cover;
      filter:brightness(.82);
    }

    .carousel-caption{
      font-weight:700;
      text-shadow:0 2px 8px rgba(0,0,0,.8);
      bottom:25px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
      background-color:rgba(0,0,0,1);
      border-radius:50%;
      background-size:55%;
      padding:17px;
      filter:invert(1);
    }

    .section-title{
      text-align:center;
      color:#31566f;
      font-size:26px;
      font-weight:800;
      margin-bottom:32px;
    }

    .stats-section{
      padding:45px 0 38px;
      background:#fff;
    }

    .stat-card{
      border:2px solid #f4c690;
      border-radius:10px;
      padding:28px 15px;
      text-align:center;
      min-height:145px;
      transition:.35s ease;
      background:#fff;
    }

    .stat-card:hover{
      transform:translateY(-8px);
      box-shadow:0 15px 30px rgba(243,155,56,.25);
    }

    .icon-circle{
      width:48px;
      height:48px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:0 auto 15px;
      font-size:20px;
    }

    .green{background:#dcfae8;color:#25bc68;}
    .blue{background:#e6f0ff;color:#4a83df;}
    .orange{background:#fff0dc;color:#ed8b34;}

    .stat-number{
      font-size:28px;
      font-weight:900;
      color:var(--blue);
      margin-bottom:10px;
    }

    .stat-label{
      color:#777;
      font-size:14px;
    }

    .features-section{
      padding:45px 0 58px;
      background:linear-gradient(90deg,#fbfdff,#fff8ef);
      border-top:1px solid #f0f0f0;
    }

    .feature-card{
      background:#fff;
      border-radius:8px;
      padding:34px 24px;
      text-align:center;
      min-height:215px;
      transition:.35s ease;
      border:1px solid #f4f4f4;
    }

    .feature-card:hover,
    .feature-card.active{
      border:2px solid #f4c690;
      box-shadow:0 16px 32px rgba(243,155,56,.25);
      transform:translateY(-8px);
    }

    .feature-title{
      font-size:18px;
      font-weight:800;
      color:#174866;
      margin:16px 0 15px;
    }

    .feature-desc{
      color:#777;
      font-size:14px;
      line-height:1.7;
      margin:0;
    }

    .footer{
      background:var(--blue);
      color:#fff;
      text-align:center;
      padding:24px 0;
      border-top:4px solid var(--orange);
      font-size:13px;
    }

    .footer p{
      margin:4px 0;
    }

    @media(max-width:768px){
      .brand-header{
        text-align:center;
      }

      .brand-logo{
        margin-bottom:10px;
      }

      .brand-title{
        font-size:21px;
      }

      .main-nav .navbar-nav{
        text-align:center;
            gap: 15px;
      }

      .hero-carousel img{
        height:220px;
      }

      .section-title{
        font-size:22px;
      }

      .stat-card,
      .feature-card{
        margin-bottom:18px;
      }
    }
    @media(max-width: 768px){

  .top-strip{
    text-align:center;
    font-size:14px;
    padding:12px 0;
  }

  .brand-header{
    padding:20px 0 22px;
    text-align:center;
  }

  .brand-header .d-flex{
    flex-direction:row !important;
    justify-content:center;
    align-items:center !important;
    gap:14px !important;
  }

  .brand-logo{
    width:72px;
    height:72px;
    margin:0;
  }

  .brand-title{
    font-size:26px;
    line-height:1.25;
  }

  .brand-subtitle{
    font-size:16px;
    max-width:260px;
    margin:6px auto 0;
    line-height:1.4;
  }

  .navbar-toggler{
    display:none;
  }

  .main-nav .collapse{
    display:block !important;
  }

  .main-nav{
    border-top:4px solid var(--orange);
    overflow:hidden;
  }

  .main-nav .navbar-nav{
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:18px;
    width:100%;
    padding:12px 0;
  }

  .main-nav .nav-item{
    flex:0 0 auto;
  }

  .main-nav .nav-link{
    width:46px;
    height:46px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    font-size:0;
    color:#fff;
  }

  .main-nav .nav-link i{
    font-size:18px;
    margin:0 !important;
  }

  .main-nav .nav-link.active{
    background:rgba(255,255,255,.18);
  }

  .ticker-bar{
    font-size:18px;
    height:38px;
    display:flex;
    align-items:center;
  }

  .ticker-track{
    padding:0;
  }

  .hero-section{
    padding:50px 18px 35px;
  }

  .hero-carousel{
    border-radius:10px;
  }

  .hero-carousel img{
    height:430px;
    object-fit:cover;
  }

  .carousel-caption{
    font-size:20px;
    bottom:18px;
  }
}

.login-section{
  padding:40px 0;
  background:#f7fbff;
}

.page-title{
  text-align:center;
  font-weight:800;
  color:#174866;
}

.page-subtitle{
  text-align:center;
  color:#777;
  margin-bottom:30px;
}

.login-card{
  background:#fff;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  overflow:hidden;
}

.card-head{
  padding:12px 15px;
  color:#fff;
  display:flex;
  gap:10px;
  align-items:center;
}

.card-head.blue{background:#003b67;}
.card-head.orange{background:#ff982f;}
.card-head.green{background:#16863d;}

.card-body-custom{
  padding:20px;
}

.btn-login{
  width:100%;
  margin-top:10px;
  height:35px;
  border:none;
  color:#fff;
  font-weight:600;
}

.btn-blue{background:#003b67;}
.btn-orange{background:#ff982f;}
.btn-green{background:#16863d;}

.otp-btn{
  background:#fff2e6;
  border:1px solid #ffd5ad;
  padding:5px 10px;
}

.small-note{
  font-size:12px;
  text-align:center;
  margin-top:10px;
}

.instruction-box{
  margin-top:25px;
  background:#eaf4ff;
  padding:15px;
  border-radius:6px;
}
.about-section{
  padding:40px 0;
  background:#f7fbff;
}

.about-title{
  text-align:center;
  font-size:26px;
  font-weight:800;
  color:#174866;
  margin-bottom:30px;
}

.about-card{
  background:#fff;
  border:2px solid #f4c690;
  border-radius:10px;
  padding:20px 25px;
  margin-bottom:22px;
  transition:0.3s;
}

.about-card:hover{
  box-shadow:0 10px 25px rgba(243,155,56,0.2);
  transform:translateY(-5px);
}

.about-card h4{
  font-size:18px;
  font-weight:800;
  color:#174866;
  margin-bottom:10px;
}

.about-card p{
  font-size:14px;
  color:#555;
  line-height:1.7;
}

.about-card ul{
  padding-left:18px;
  margin:0;
}

.about-card ul li{
  font-size:14px;
  margin-bottom:6px;
  color:#444;
}

.administration-section{
  padding:45px 0;
  background:linear-gradient(90deg,#f7fbff,#fffaf2);
}

.admin-title{
  text-align:center;
  font-size:28px;
  font-weight:800;
  color:#174866;
  margin-bottom:35px;
}

.officer-card{
  background:#fff;
  border:2px solid #31566f;
  border-radius:9px;
  padding:25px 22px;
  min-height:520px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:.3s;
}

.officer-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 28px rgba(0,59,103,.18);
}

.officer-img{
  width:145px;
  height:190px;
  object-fit:cover;
  border-radius:6px;
  display:block;
  margin:0 auto 22px;
}

.officer-card h4{
  text-align:center;
  color:#174866;
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
}

.officer-card h6{
  text-align:center;
  color:#f39b38;
  font-size:14px;
  font-weight:700;
  margin-bottom:24px;
}

.officer-card p{
  font-size:14px;
  color:#555;
  line-height:1.7;
}

.officer-card strong{
  color:#174866;
  font-size:14px;
}

.contact-text{
  margin-top:6px;
  margin-bottom:0;
}

.admin-info-card{
  max-width:760px;
  margin:45px auto 25px;
  background:#fff;
  border:2px solid #f4c690;
  border-radius:9px;
  padding:25px;
}

.admin-info-card h3{
  text-align:center;
  color:#174866;
  font-size:22px;
  font-weight:800;
  margin-bottom:25px;
}

.admin-info-card p{
  font-size:14px;
  color:#555;
  line-height:1.7;
}

.feature-box{
  background:#eaf4ff;
  border:1px solid #cfe3f7;
  border-radius:6px;
  padding:15px 18px;
  margin:18px 0;
  color:#31566f;
}

.feature-box ul{
  margin:8px 0 0;
  padding-left:20px;
}

.feature-box li{
  font-size:14px;
  margin-bottom:6px;
}

.admin-link-box{
  max-width:760px;
  margin:0 auto;
  background:#eaf4ff;
  border:1px solid #9bc7eb;
  border-radius:7px;
  padding:24px 18px;
  text-align:center;
  color:#174866;
  font-size:15px;
  font-weight:800;
}

@media(max-width:768px){
  .administration-section{
    padding:35px 14px;
  }

  .admin-title{
    font-size:24px;
  }

  .officer-card{
    min-height:auto;
  }

  .admin-info-card,
  .admin-link-box{
    max-width:100%;
  }
}
.links-section{
  padding:38px 0 40px;
  background:linear-gradient(90deg,#f7fbff,#fffaf2);
}

.links-title{
  text-align:center;
  font-size:28px;
  font-weight:800;
  color:#174866;
  margin-bottom:25px;
}

.link-card{
  background:#fff;
  border:2px solid #f4c690;
  border-radius:8px;
  padding:18px 22px;
  min-height:140px;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
  transition:.3s;
}

.link-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 28px rgba(243,155,56,.18);
}

.link-card h4{
  color:#174866;
  font-size:17px;
  font-weight:800;
  margin-bottom:14px;
}

.link-card a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#555;
  text-decoration:none;
  font-size:14px;
  margin-bottom:9px;
}

.link-card a:hover{
  color:#003b67;
}

.link-card i{
  color:#999;
  font-size:12px;
}

.helpline-box{
  max-width:850px;
  margin:24px auto 0;
  background:#eaf4ff;
  border:1px solid #9bc7eb;
  border-radius:8px;
  padding:20px 24px;
  color:#174866;
}

.helpline-box h4{
  font-size:18px;
  font-weight:800;
  margin-bottom:15px;
}

.helpline-box p{
  margin-bottom:6px;
  font-size:14px;
}

@media(max-width:768px){
  .links-section{
    padding:32px 14px;
  }

  .links-title{
    font-size:24px;
  }

  .link-card{
    min-height:auto;
  }
}

.verify-section {
    background: #f5f7fa;
    min-height: calc(100vh - 180px);
}

.verify-card {
    max-width: 880px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.verify-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.verify-subtitle {
    color: #777;
    margin-bottom: 0;
}

.verify-input {
    height: 42px;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
}

.verify-btn {
    background: #141414;
    color: #fff;
    padding: 0 24px;
    border-radius: 0 8px 8px 0;
}

.verify-btn:hover {
    background: #000;
    color: #fff;
}

.certificate-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 22px;
    background: #fff;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-btn {
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 7px;
}

.certificate-preview {
    border: 2px solid #333;
    padding: 22px 18px;
    background: #fff;
}

.cert-logo {
    width: 55px;
    margin-bottom: 8px;
}

.cert-state {
    color: #123b6d;
    font-weight: 700;
    margin-bottom: 4px;
}

.cert-office,
.cert-district {
    margin: 0;
    font-size: 14px;
}

.cert-heading {
    font-weight: 700;
    margin-top: 8px;
}

.cert-line {
    height: 3px;
    background: #123b6d;
    margin: 14px 0;
}

.cert-number-box {
    background: #eef6ff;
    border: 1px solid #cbdced;
    border-radius: 5px;
    padding: 12px;
}

.cert-number-box p {
    margin: 0;
    font-size: 13px;
}

.cert-number-box h4 {
    color: #123b6d;
    font-weight: 700;
    margin: 4px 0 0;
}

.verified-badge {
    border: 2px solid #198754;
    color: #198754;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    background: #fff;
}

.section-heading {
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-top: 18px;
}

.cert-table {
    font-size: 13px;
    margin-bottom: 16px;
}

.cert-table th {
    background: #eaf2ff;
    font-weight: 700;
}

.cert-table td,
.cert-table th {
    padding: 7px 9px;
}

.property-box {
    background: #f8f9fb;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    font-size: 13px;
}

.date-box {
    background: #eef6ff;
    border: 1px solid #cbdced;
    border-radius: 5px;
    padding: 13px 18px;
    font-size: 13px;
}

.cert-note {
    font-size: 13px;
    color: #444;
}

.cert-note p {
    margin-bottom: 4px;
}

.new-verify-btn {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 7px;
    padding: 8px 18px;
}

.new-verify-btn:hover {
    background: #f1f1f1;
}

@media(max-width: 768px) {
    .verify-card {
        padding: 18px;
    }

    .input-group {
        display: block;
    }

    .verify-input {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .verify-btn {
        width: 100%;
        height: 42px;
        border-radius: 8px;
    }

    .certificate-box {
        padding: 14px;
    }

    .certificate-preview {
        padding: 15px 10px;
        overflow-x: auto;
    }

    .action-buttons {
        flex-direction: column;
    }

    .cert-table {
        min-width: 620px;
    }

    .date-box .col-md-6 {
        margin-bottom: 8px;
    }
}

.verify-section {
    background: #f5f7fa;
    min-height: calc(100vh - 180px);
}

.verify-card {
    max-width: 1100px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 12px;
    padding: 32px 34px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.verify-title {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.verify-subtitle {
    font-size: 16px;
    color: #777;
    margin: 0;
}

.verify-input {
    height: 44px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.verify-input:focus {
    border-color: #123b6d;
    box-shadow: 0 0 0 0.15rem rgba(18,59,109,0.12);
}

.verify-btn {
    height: 44px;
    background: #c53717;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    white-space: nowrap;
}

.verify-btn:hover {
    background: #a92c11;
    color: #fff;
}

.invalid-box {
    background: #fff1f1;
    border: 1px solid #ffb8b8;
    border-radius: 10px;
    padding: 32px;
    color: #c71919;
}

.invalid-icon {
    width: 42px;
    height: 42px;
    border: 3px solid #e92525;
    color: #e92525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invalid-icon i {
    font-size: 22px;
}

.invalid-box h5 {
    font-size: 24px;
    font-weight: 700;
    color: #8f1616;
    margin-bottom: 6px;
}

.invalid-box p {
    font-size: 16px;
}

.invalid-message {
    color: #d91e1e;
}

.retry-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 16px;
}

.retry-btn:hover {
    background: #f3f3f3;
}

@media(max-width: 768px) {
    .verify-card {
        padding: 22px 18px;
    }

    .verify-title {
        font-size: 24px;
    }

    .verify-btn {
        margin-top: 6px;
    }

    .invalid-box {
        padding: 22px;
    }

    .invalid-box .d-flex {
        flex-direction: column;
    }

    .invalid-box h5 {
        font-size: 21px;
    }
}

